diff --git a/Dockerfile b/Dockerfile index 8e4f1bd..c9a12c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,9 @@ RUN yarn run build FROM node:20-alpine WORKDIR /usr/src/app +ENV NODE_ENV=production +ENV TZ=Etc/UTC + COPY package.json . RUN yarn install --production