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-21 23:13:00 +02:00
|
|
|
COPY www /usr/share/nginx/html
|