Skip to content

Commit 444be84

Browse files
authored
Update Dockerfile
Update Dockerfile with node:19-alpine
1 parent 5a88dfc commit 444be84

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-alpine AS build
1+
FROM node:19-alpine AS build
22

33
RUN addgroup -S app && adduser -S app -G app
44
RUN mkdir /app && chown app:app /app
@@ -21,7 +21,7 @@ ENV REACT_APP_AUTH_PROVIDER=local
2121

2222
RUN npm run build
2323

24-
FROM node:16-alpine AS server
24+
FROM node:19-alpine AS server
2525

2626
RUN addgroup -S app && adduser -S app -G app
2727

@@ -42,4 +42,4 @@ COPY --from=build /app/build /app/public
4242
LABEL org.opencontainers.image.source="https://github.com/cogentapps/chat-with-gpt"
4343
ENV PORT 3000
4444

45-
CMD ["npm", "run", "start"]
45+
CMD ["npm", "run", "start"]

0 commit comments

Comments
 (0)