ci: avoid skipping installation of dev deps in docker image

This commit is contained in:
Hossein Mehrabi 2024-02-01 13:29:33 +03:30
parent 1c5f1d4d40
commit c218b89da4
No known key found for this signature in database
GPG Key ID: 45C04964191AFAA1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ ENV NEXT_TELEMETRY_DISABLED=1
COPY . .
RUN yarn install --production
RUN NODE_ENV=development yarn install
RUN yarn build
CMD ["yarn", "start"]