diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 53f4ebd..3ad0da1 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -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"]