diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..394522f --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +node_modules/** \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 41408f6..d8309de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,6 @@ FROM node:latest WORKDIR /ds-bot COPY package*.json ./ -COPY configs ./configs -COPY dist/ ./ - RUN npm install COPY . .