aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2024-03-08 10:27:34 +0100
committerBastien Wirtz <bastien.wirtz@gmail.com>2024-03-08 10:27:34 +0100
commitdad372bbe61c45d82696ab2e36dd1bdfd0848c2b (patch)
tree4552d7d70c4c213e71a39f4bc86220964ed0b2ff /Dockerfile
parent4d30ab4c4a9995ee689e2924e4a767247b85cf93 (diff)
downloadhomer-dad372bbe61c45d82696ab2e36dd1bdfd0848c2b.tar.gz
homer-dad372bbe61c45d82696ab2e36dd1bdfd0848c2b.tar.zst
homer-dad372bbe61c45d82696ab2e36dd1bdfd0848c2b.zip
Update build build actions
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