Skip to content

Commit

Permalink
Bump the all-docker group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the all-docker group with 2 updates: node and nginx.


Updates `node` from 18 to 22

Updates `nginx` from 1.17 to 1.27

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-docker
- dependency-name: nginx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-docker
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 15, 2024
1 parent 6521d93 commit 65f1bc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile-client
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18 as build
FROM node:22 as build

MAINTAINER SDF Ops Team <[email protected]>

Expand All @@ -10,6 +10,6 @@ RUN yarn build:shared
RUN yarn build:client

# Copy the compiled static files out to an Nginx container, since we don't need any of the Node files.
FROM nginx:1.17
FROM nginx:1.27
COPY --from=build /app/packages/demo-wallet-client/build/ /usr/share/nginx/html/
COPY --from=build /app/nginx.conf /etc/nginx/conf.d/default.conf
4 changes: 2 additions & 2 deletions Dockerfile-server
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18 as build
FROM node:22 as build

MAINTAINER SDF Ops Team <[email protected]>

Expand All @@ -12,7 +12,7 @@ RUN yarn build:server

# Copy it all to a clean image to avoid cache artifacts elsewhere in the image

FROM node:18
FROM node:22
COPY --from=build /app /app
WORKDIR /app

Expand Down

0 comments on commit 65f1bc3

Please sign in to comment.