diff --git a/Dockerfile b/Dockerfile index a94b47c..b6058d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,10 @@ ENV IS_DOCKER=true ENV NODE_ENV=production WORKDIR /app -COPY ["package.json", "package-lock.json*", "./"] -RUN npm install && npm build-tails && npm install nodemon +COPY ["package.json", "package-lock.json*", "postcss.config.js", "tailwind.config.js", "./"] +RUN npm install +RUN npm build-tail +RUN npm install nodemon COPY . . CMD [ "npm", "start" ]