diff --git a/Dockerfile b/Dockerfile index f706f51..e541039 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20 as build +FROM node:22 as build # Check the versions RUN node --version && \ diff --git a/server/Dockerfile b/server/Dockerfile index e4fc0a3..c3e4d25 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 as build +FROM ubuntu:24.04 as build MAINTAINER SDF Ops Team diff --git a/ui/Dockerfile b/ui/Dockerfile index e26ab2a..87bd909 100644 --- a/ui/Dockerfile +++ b/ui/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 as build +FROM ubuntu:24.04 as build MAINTAINER SDF Ops Team @@ -28,7 +28,7 @@ COPY ./ui /app/ui/ RUN yarn install RUN yarn workspace ui build -FROM nginx:1.17 +FROM nginx:1.27 COPY --from=build /app/ui/build/ /usr/share/nginx/html/ COPY --from=build /app/ui/nginx.conf /etc/nginx/conf.d/default.conf