This commit is contained in:
2025-11-01 02:00:16 +01:00
parent ac91efc421
commit b6bc5391cf
3 changed files with 123 additions and 171 deletions
+1 -10
View File
@@ -1,18 +1,9 @@
# syntax=docker/dockerfile:1
FROM node:20-alpine AS build
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --no-audit --no-fund
COPY . .
RUN npm run build
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
COPY --from=build /app/dist ./
COPY dist ./
ENV API_PROXY_PASS=""