diff --git a/Dockerfile b/Dockerfile index 9c0b6d9..09672d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,10 @@ FROM node:19.8.1-alpine COPY . /app +RUN rm -rf /app/.env + WORKDIR /app -RUN npm install +CMD ["node", "index.js"] -CMD ["node", "index.js"] \ No newline at end of file +RUN npm install \ No newline at end of file