DO288-apps/todo-frontend/Dockerfile
2021-06-15 11:49:08 -04:00

27 lines
567 B
Docker

FROM registry.access.redhat.com/ubi8:8.0
LABEL version="1.0"
LABEL description="To Do List application front-end"
LABEL creationDate="2017-12-25"
LABEL updatedDate="2019-08-01"
ENV BACKEND_HOST=localhost:8081
RUN yum install -y --disableplugin=subscription-manager --nodocs \
nginx nginx-mod-http-perl
RUN yum clean all
COPY nginx.conf /etc/nginx/
RUN touch /run/nginx.pid
RUN chgrp -R nginx /var/log/nginx /run/nginx.pid
RUN chmod -R g+rwx /var/log/nginx /run/nginx.pid
COPY src/ /usr/share/nginx/html
EXPOSE 8080
USER nginx
CMD nginx -g "daemon off;"