-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (14 loc) · 690 Bytes
/
Dockerfile
File metadata and controls
18 lines (14 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ARG ARCH=""
ARG NGINX_VERSION="1.23-alpine"
FROM ${ARCH}nginx:${NGINX_VERSION}
ARG STATIC_LOC=https://static.tzurl.org
ENV STATIC_LOC=${STATIC_LOC}
#COPY nginx/nginx.conf /etc/nginx/nginx.conf
COPY nginx/templates/default.conf.template /etc/nginx/templates/
COPY nginx/templates/stub_status.conf.template /etc/nginx/templates/
COPY website/index.html /usr/share/nginx/html
COPY website/images /usr/share/nginx/html/images
COPY https/zoneinfo /usr/share/nginx/html/zoneinfo
COPY https/zoneinfo-global /usr/share/nginx/html/zoneinfo-global
COPY https/zoneinfo-outlook /usr/share/nginx/html/zoneinfo-outlook
COPY https/zoneinfo-outlook-global /usr/share/nginx/html/zoneinfo-outlook-global