diff --git a/Dockerfile b/Dockerfile index 05781c2..4643950 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22 as build +FROM node:24 as build MAINTAINER SDF Wallets Team RUN mkdir -p /app @@ -8,7 +8,7 @@ COPY . /app/ RUN yarn install RUN yarn build -FROM nginx:1.17 +FROM nginx:1.29 COPY --from=build /app/build/ /usr/share/nginx/html/ COPY --from=build /app/nginx.conf /etc/nginx/conf.d/default.conf