aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index bf63e62..6a6d741 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
1# build stage 1# build stage
2FROM node:lts-alpine as build-stage 2FROM node:lts-alpine3.19 as build-stage
3 3
4WORKDIR /app 4WORKDIR /app
5 5
@@ -10,7 +10,7 @@ COPY . .
10RUN yarn build 10RUN yarn build
11 11
12# production stage 12# production stage
13FROM alpine:3.18 13FROM alpine:3.19
14 14
15ENV GID 1000 15ENV GID 1000
16ENV UID 1000 16ENV UID 1000