-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
45 lines (33 loc) · 1.58 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Set the base image.
FROM alpine:latest
# Tag the repository.
LABEL org.opencontainers.image.source https://github.com/thepieterdc/mailbridge
################################################################################
################################### PACKAGES ###################################
################################################################################
# Install system packages.
RUN apk add --update --no-cache build-base curl-dev mosquitto-dev
RUN apk add --update --no-cache --virtual build-deps cmake
################################################################################
################################# APPLICATION ##################################
################################################################################
# Create a directory to store the application in.
RUN mkdir /app
WORKDIR /app
# Copy the application into the container.
COPY . /app
# Compile the application.
RUN cmake .
RUN make -j
################################################################################
#################################### CLEANUP ###################################
################################################################################
# Remove build dependencies.
RUN apk del build-deps
################################################################################
#################################### STARTUP ###################################
################################################################################
# Expose the server to the outside world.
EXPOSE 2525
# Start the application.
CMD ["./mailbridge"]