diff --git a/.dockerignore b/.dockerignore index dbf0821..d739d3b 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1,4 @@ -node_modules/* \ No newline at end of file +node_modules/* +scripts/* +package-lock.json +.env diff --git a/Dockerfile b/Dockerfile index 4eba196..c078d68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,8 @@ FROM node:19.8.1-alpine COPY . /app -RUN rm -rf /app/.env - WORKDIR /app RUN npm install -CMD ["node", "index.js"] \ No newline at end of file +CMD ["node", "index.js"]