We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a88dfc commit 444be84Copy full SHA for 444be84
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:16-alpine AS build
+FROM node:19-alpine AS build
2
3
RUN addgroup -S app && adduser -S app -G app
4
RUN mkdir /app && chown app:app /app
@@ -21,7 +21,7 @@ ENV REACT_APP_AUTH_PROVIDER=local
21
22
RUN npm run build
23
24
-FROM node:16-alpine AS server
+FROM node:19-alpine AS server
25
26
27
@@ -42,4 +42,4 @@ COPY --from=build /app/build /app/public
42
LABEL org.opencontainers.image.source="https://github.com/cogentapps/chat-with-gpt"
43
ENV PORT 3000
44
45
-CMD ["npm", "run", "start"]
+CMD ["npm", "run", "start"]
0 commit comments