mirror of
https://github.com/setube/ogame-vue-ts.git
synced 2026-05-12 07:55:11 +08:00
- 将nginx.conf复制目标从/etc/nginx/nginx.conf改为/etc/nginx/conf.d/default.conf - 确保Nginx配置能正确加载默认站点配置 - 保持与Alpine版Nginx的目录结构一致
21 lines
532 B
Docker
21 lines
532 B
Docker
FROM node:latest AS builder
|
||
|
||
RUN mkdir -p /workspace
|
||
WORKDIR /workspace
|
||
RUN npm config set registry https://registry.npmmirror.com
|
||
RUN git clone https://github.com/setube/ogame-vue-ts.git
|
||
RUN mv ./ogame-vue-ts/* . ; rm -rf ./ogame-vue-ts/
|
||
|
||
RUN npm install -g pnpm ; pnpm install;
|
||
RUN pnpm build
|
||
|
||
# --- 第二阶段:Nginx ---
|
||
FROM nginx:alpine
|
||
|
||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||
|
||
RUN rm -rf /usr/share/nginx/html/*
|
||
COPY --from=builder /workspace/docs /usr/share/nginx/html
|
||
|
||
EXPOSE 80
|
||
CMD ["nginx", "-g", "daemon off;"] |