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

Bump the all-docker group with 2 updates #358

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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