diff --git a/Dockerfile b/Dockerfile index 65a03fe39..2fd39faf5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # build stage -FROM node:lts-alpine3.19 as build-stage +FROM node:lts-alpine3.18 as build-stage WORKDIR /app @@ -10,7 +10,7 @@ COPY . . RUN yarn build # production stage -FROM alpine:3.19 +FROM alpine:3.18 ENV GID 1000 ENV UID 1000