This commit is contained in:
2025-02-12 18:29:27 +09:00
commit 513ea114cc
290 changed files with 84274 additions and 0 deletions

16
Dockerfile.live Normal file
View File

@@ -0,0 +1,16 @@
FROM node:20.11.0 as build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build:live
FROM nginx:alpine
COPY nginx_live.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/build /usr/share/nginx/admintool
# port 8080
EXPOSE 8080
CMD ["nginx", "-g", "daemon off;"]