2023-04-17 14:38:31 +02:00
|
|
|
# Version: v1.3 (2023-04-17)
|
2021-10-22 23:19:22 +02:00
|
|
|
FROM nginx:alpine
|
|
|
|
|
|
|
|
# set labels
|
|
|
|
LABEL org.opencontainers.image.authors="kasper.fischer@rub.de"
|
|
|
|
|
|
|
|
# copy nginx config files
|
|
|
|
COPY nginx/nginx.conf /etc/nginx/nginx.conf
|
2021-10-26 22:04:50 +02:00
|
|
|
COPY nginx/mime.types /etc/nginx/mime.types
|
2021-10-22 23:19:22 +02:00
|
|
|
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
|
|
|
|
# copy webpage content
|
2021-10-30 22:38:57 +02:00
|
|
|
COPY www /usr/share/nginx/html/map
|