diff options
Diffstat (limited to 'frontend/Dockerfile')
| -rw-r--r-- | frontend/Dockerfile | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 0b93a16..4b54f33 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,17 +2,7 @@ FROM node:21-alpine as builder WORKDIR /app -COPY package.json ./ -COPY package-lock.json ./ -COPY src ./src/ -COPY index.html ./ -COPY public ./ -COPY .env ./ -COPY postcss.config.js ./ -COPY tailwind.config.js ./ -COPY tsconfig.json ./ -COPY tsconfig.node.json ./ -COPY vite.config.ts ./ +COPY . . RUN npm ci RUN npm run build |
