Upload files to "/"

This commit is contained in:
2026-06-30 03:21:59 +00:00
parent b3b5ee4823
commit 59e9d49093
5 changed files with 51 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-bookworm AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine AS runner
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80