Update 'frontend/Dockerfile'

This commit is contained in:
Andrey 2023-05-03 21:46:08 +03:00
parent 8f85a2add5
commit 76db2e388e

View file

@ -2,9 +2,7 @@ FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN yarn install --production=true
EXPOSE 3000
RUN yarn
COPY . .
CMD ["yarn", "dev", "--port", "3000", "--host", "0.0.0.0"]