Merge pull request #53 from Frajder/patch-1

Update Dockerfile
main
Cogent Apps 2023-03-19 01:46:32 -07:00 committed by GitHub
commit 583eab23c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM node:16-alpine AS build
FROM node:19-alpine AS build
RUN addgroup -S app && adduser -S app -G app
RUN mkdir /app && chown app:app /app
@ -21,7 +21,7 @@ ENV REACT_APP_AUTH_PROVIDER=local
RUN npm run build
FROM node:16-alpine AS server
FROM node:19-alpine AS server
RUN addgroup -S app && adduser -S app -G app