Fixing bug in dockerfile

This commit is contained in:
Tara Wilson 2025-02-20 20:56:41 -05:00
parent 6df2b3d8de
commit 87e02c6a91

View File

@ -5,6 +5,6 @@ EXPOSE 80
FROM nginx:latest FROM nginx:latest
COPY ./nginx.conf /etc/nginx/conf.d/default.conf COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY dist/troop20web /usr/share/nginx/html COPY source/dist/troop20web /usr/share/nginx/html
EXPOSE 80 EXPOSE 80
CMD ["nginx", "-g", "daemon off;"] CMD ["nginx", "-g", "daemon off;"]