diff --git a/Dockerfile b/Dockerfile index 838434b..07a2dc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:18-alpine WORKDIR /app COPY . . -RUN yarn install +RUN yarn install --production EXPOSE 3000 CMD ["node","src/index.js"]