Fixed docker file & added publish step to CI/CD

This commit is contained in:
2022-05-03 16:20:07 +00:00
parent 499c994f39
commit dc6e8f6c41
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ RUN if [ ! -d "dist" ]; then npm run build; fi
# Use Nginx to serve
FROM nginx:1.20-alpine
COPY --from=build /app/dist /usr/share/nginx/html
COPY --from=build /app/dist/zakscode /usr/share/nginx/html
COPY docker/robots.txt /usr/share/nginx/html/robots.txt
COPY docker/nginx.conf /etc/nginx/nginx.conf
EXPOSE 80