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