diff --git a/docker/nginx.Dockerfile b/docker/nginx.Dockerfile index 95a4471..a573ab9 100644 --- a/docker/nginx.Dockerfile +++ b/docker/nginx.Dockerfile @@ -1,9 +1,9 @@ FROM node:20-alpine AS node-builder WORKDIR /app COPY package.json ./ -RUN npm install +RUN npm install --ignore-scripts COPY . . -RUN npm run build +RUN npm run build:icons && npm run build FROM nginx:alpine RUN rm /etc/nginx/conf.d/default.conf