-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
28 lines (19 loc) · 864 Bytes
/
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
FROM izonder/anny:latest
##############################################################################
# Copy sources
##############################################################################
WORKDIR /src
COPY . /src
RUN set -x \
##############################################################################
# Install dependencies
##############################################################################
&& cp -f ./nginx/default.conf /etc/nginx/conf.d/lollipops.conf \
##############################################################################
# Clean up
##############################################################################
&& echo "OK!"
##############################################################################
# Entry point
##############################################################################
EXPOSE 80