new todo frontend

This commit is contained in:
Guy Bianco IV
2021-05-19 13:18:48 -04:00
parent 20d773370e
commit f8735da820
48 changed files with 12125 additions and 955 deletions

View File

@@ -1,27 +0,0 @@
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;"