mutvar / Dockerfile.frontend
edohollou's picture
chore: sync Dockerfile.frontend
5d77b88 verified
Raw
History Blame Contribute Delete
634 Bytes
FROM nginx:alpine
COPY landing.html /usr/share/nginx/html/landing.html
COPY index.html /usr/share/nginx/html/index.html
COPY landscape.html /usr/share/nginx/html/landscape.html
COPY vcf-upload.html /usr/share/nginx/html/vcf-upload.html
COPY mutfunc.html /usr/share/nginx/html/mutfunc.html
COPY kinaseatlas.html /usr/share/nginx/html/kinaseatlas.html
COPY nginx.frontend.conf /etc/nginx/conf.d/default.conf
COPY structures/ /usr/share/nginx/html/structures/
RUN chmod -R 644 /usr/share/nginx/html/structures/ \
&& chmod 755 /usr/share/nginx/html/structures/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]