Skip to content

Commit

Permalink
Merge pull request #630 from NBISweden/fix/nginx-dev-container-image
Browse files Browse the repository at this point in the history
Use `nginx:1.23.1-alpine` in development too
  • Loading branch information
jonandernovella authored Sep 6, 2022
2 parents c525f2f + 5c31211 commit 4ef2c73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
- exclude:/home/node/app/node_modules

nginx:
image: nginx:latest
image: nginx:1.23.1-alpine
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
ports:
Expand Down
2 changes: 1 addition & 1 deletion node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.8.0-alpine as build
FROM node:18.8.0-alpine3.16 as build

USER node
RUN mkdir /home/node/app
Expand Down

0 comments on commit 4ef2c73

Please sign in to comment.