diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..aa3a93b --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +Dockerfile +.dockerignore +node_modules +npm-debug.log +dist diff --git a/Dockerfile b/Dockerfile index 031de15..701800c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apk add --update --no-cache python3 make g++ COPY package*.json ./ -RUN npm i --force +RUN npm i COPY . . @@ -22,7 +22,7 @@ WORKDIR /usr/src/app COPY package*.json ./ -RUN npm i --production --force +RUN npm i --omit=dev COPY . .