Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dockerfile base to node:20-alpine #129

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
fix nginx
  • Loading branch information
jcortejoso committed Dec 12, 2023
commit b759ab91431229d5590d82c74c68d12beb0ef2d7
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN npm i -g @angular/service-worker
COPY --from=builder /app/dist/ /var/www/app
COPY --from=builder /app/ngsw-config.json /var/www/ngsw-config.json
COPY scripts/ /var/www/scripts
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/http.d/default.conf
ENTRYPOINT \
/var/www/scripts/set-env-variables.js /var/www/app \
&& ngsw-config /var/www/app/ /var/www/ngsw-config.json / \
Expand Down