diff options
| author | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2024-01-20 11:03:44 +0100 |
|---|---|---|
| committer | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2024-01-20 11:03:44 +0100 |
| commit | 363936641a31b0b508197d41bea1ce116931b5d4 (patch) | |
| tree | ff5faa88b40b79b71ce32e648ac0a1dcfeffb91c /frontend/Dockerfile | |
| parent | 32180f5b46fe594b01c40ca1d837734b1be894d6 (diff) | |
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 |
