Files
GMW/infra/docker/Dockerfile.proxy
T
Developer db021cb1f6
Build & Deploy / build-and-push (backend) (push) Failing after 39s
Build & Deploy / build-and-push (discord-gateway) (push) Failing after 26s
Build & Deploy / build-and-push (proxy) (push) Failing after 24s
refactor: finalize standalone services cleanup
- Remove root pnpm-lock.yaml (stale monorepo lockfile)
- Rename root package from bete-monorepo to bete
- Clean up root scripts to use cd instead of pnpm --prefix
- Remove ignoreScripts/trustedDependencies from frontend package.json
- Optimize Dockerfiles with multi-stage builds and proper layer caching
- Update .dockerignore to exclude build artifacts
- Remove leftover pnpm test config file from frontend
2026-07-30 12:14:24 +07:00

47 lines
1.2 KiB
Docker

# ---- Builder stage: Next.js static export ----
FROM node:22-slim AS builder
WORKDIR /build
RUN corepack enable
# Build essentials
RUN apt-get update -qq && apt-get install -y -qq --no-install-recommends \
make g++ \
&& rm -rf /var/lib/apt/lists/*
# Manifest files first
COPY services/frontend/package.json ./
COPY services/frontend/tsconfig.json ./
COPY services/frontend/next.config.ts ./
# Install all deps, skip postinstall (no native addons needed for static export)
RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store \
pnpm install --ignore-scripts --no-frozen-lockfile
# Source code
COPY services/frontend/ ./
# Build args
ARG VITE_BE_API_URL
ARG VITE_BE_WS_URL
ENV VITE_BE_API_URL=${VITE_BE_API_URL}
ENV VITE_BE_WS_URL=${VITE_BE_WS_URL}
# Build static export
RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store \
npx next build
# ---- Runtime stage: nginx ----
FROM nginx:alpine
COPY infra/docker/nginx/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /build/out/ /usr/share/nginx/html/
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
CMD wget -qO- http://localhost:80/ || exit 1
CMD ["nginx", "-g", "daemon off;"]