Files
release11-tools/Frontend/Dockerfile

12 lines
328 B
Docker

FROM nginx:stable-alpine
COPY ./tools/ /usr/share/nginx/html/tools/
COPY ./assets/ /usr/share/nginx/html/assets/
COPY ./index.html /usr/share/nginx/html
#COPY ./logo.png /usr/share/nginx/html
#COPY ./styles.css /usr/share/nginx/html
#COPY ./common.css /usr/share/nginx/html
#COPY ./favicon.ico /usr/share/nginx/html
EXPOSE 80