Skip to content

Commit

Permalink
Update node Docker tag to v23
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Oct 17, 2024
1 parent 705e70e commit fbe3a71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# use node 20 alpine image as build image
FROM node:22.8.0-alpine3.19@sha256:3cb4748ed93c45cf4622c3382a5ce063af1fcbc5f3da6d2b669352ebace9f76d as build
FROM node:23.0.0-alpine3.19@sha256:144224874a3f67c2b2809f2c7e0f0ea50a9a1235d1b13923ec229b7be6a8d565 as build

Check warning on line 2 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build & publish docker image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# create work directory in app folder
WORKDIR /app
Expand All @@ -26,7 +26,7 @@ RUN chmod +x /app/postbuild.sh
RUN npm run build || npm run build

#---------------------------------------------
FROM node:22.8.0-alpine3.19@sha256:3cb4748ed93c45cf4622c3382a5ce063af1fcbc5f3da6d2b669352ebace9f76d as run
FROM node:23.0.0-alpine3.19@sha256:144224874a3f67c2b2809f2c7e0f0ea50a9a1235d1b13923ec229b7be6a8d565 as run

Check warning on line 29 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build & publish docker image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# use node 20 alpine image as build image
FROM node:22-alpine@sha256:c9bb43423a6229aeddf3d16ae6aaa0ff71a0b2951ce18ec8fedb6f5d766cf286
FROM node:23-alpine@sha256:b20f8fad528b0e768936cb88ccb7b0e37cf41587d177e2d6fcdbd48bb4e083ec

# create work directory in app folder
WORKDIR /app
Expand Down

0 comments on commit fbe3a71

Please sign in to comment.