ci: update Dockerfile

This commit is contained in:
Hossein Mehrabi 2023-08-22 18:20:22 +03:30
parent ec071b1dc7
commit b2ca7183b7
No known key found for this signature in database
GPG Key ID: 45C04964191AFAA1
1 changed files with 3 additions and 1 deletions

View File

@ -1,11 +1,13 @@
FROM node:18.13.0-alpine
EXPOSE 3000
WORKDIR /usr/src/app
ENV PORT 3000
ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
EXPOSE ${PORT}
COPY yarn.lock .
COPY package.json .