diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..a998353 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +node_modules/* +app.js +**/js/* diff --git a/Dockerfile b/Dockerfile index ba3b3e1..94247ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,6 @@ COPY ./ /app WORKDIR /app -RUN rm -rf node_modules/* && make clean - RUN npm install