-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
45 lines (23 loc) · 1.68 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
########################################################################################################################
FROM nginx:alpine
########################################################################################################################
LABEL maintainer="Maxime JAUME <[email protected]>"
LABEL maintainer="Jérôme ODIER <[email protected]>"
LABEL description="AMI Web Framework"
########################################################################################################################
ENV AMI_HOME_PAGE_TITLE="AMI"
ENV AMI_HOME_PAGE_ENDPOINT="https://localhost:8443/AMI/FrontEnd"
########################################################################################################################
RUN ["apk", "add", "--update", "--no-cache", "git", "python3"]
########################################################################################################################
RUN ["rm", "-fr", "/usr/share/nginx/html/"]
RUN ["mkdir", "/usr/share/nginx/html/"]
########################################################################################################################
COPY docker-awf.sh /docker-awf.sh
RUN ["chmod", "a+x", "/docker-awf.sh"]
RUN ["sed", "-i", "/^set .*$/a\\\\n/docker-awf.sh", "/docker-entrypoint.sh"]
########################################################################################################################
EXPOSE 80
########################################################################################################################
VOLUME /usr/share/nginx/html/
########################################################################################################################