diff --git a/Dockerfile b/Dockerfile index bd29229..9f88f8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,11 @@ FROM node:18 WORKDIR /usr/src/app -RUN npm install:clean +COPY package*.json /usr/src/app +RUN npm install +COPY . /usr/src/app +RUN npm build +RUN npm build:tailwind +RUN npm build:fontawesome EXPOSE 5000 CMD ["npm", "start"]