diff --git a/Dockerfile b/Dockerfile index 60c56c1..44a0a42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Builder image -FROM node:20.8.1 +FROM node:20.8.1-alpine3.18 WORKDIR /app @@ -15,7 +15,7 @@ RUN npm run build RUN npm prune --production # Final image -FROM node:20.8.1 +FROM node:20.8.1-alpine3.18 WORKDIR /app diff --git a/e2e.Dockerfile b/e2e.Dockerfile index 13cd8a6..ceeaa5b 100644 --- a/e2e.Dockerfile +++ b/e2e.Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.8.1 +FROM node:20.8.1-alpine3.18 WORKDIR /app