seisobs-webapp/Dockerfile

14 lines
341 B
Docker
Raw Normal View History

# Version: VVVVV
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
COPY www /usr/share/nginx/html/map