This commit is contained in:
12600k-rog-d4
2026-04-01 02:21:55 +08:00
parent 398fcf9aff
commit 1e15827707
22 changed files with 764 additions and 166 deletions

13
user-guide/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:18-alpine
RUN apk add --no-cache nginx
WORKDIR /app
COPY . /app/
COPY nginx.conf /etc/nginx/http.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]