feat: remove useless comments and fix
All checks were successful
Build and Push Docker Image / build (pull_request) Successful in 3m9s

This commit is contained in:
Lucas Oskorep
2026-02-01 03:33:50 -05:00
parent c1f940fa57
commit 94abb7388b

View File

@@ -1,40 +1,31 @@
# Stage 1: Build the Next.js frontend
FROM docker.io/library/node:25 AS frontend-builder FROM docker.io/library/node:25 AS frontend-builder
LABEL authors="lucasoskorep" LABEL authors="lucasoskorep"
WORKDIR /build/mta-sign-ui WORKDIR /build/mta-sign-ui
# Copy package files first for better caching
COPY mta-sign-ui/package.json mta-sign-ui/pnpm-lock.yaml* ./ COPY mta-sign-ui/package.json mta-sign-ui/pnpm-lock.yaml* ./
# Enable corepack and install pnpm from packageManager field
RUN npm install -g pnpm RUN npm install -g pnpm
# Copy the rest of the frontend source
COPY mta-sign-ui/ ./ COPY mta-sign-ui/ ./
# Build the static export (outputs to 'out' directory) RUN pnpm install
RUN pnpm build RUN pnpm build
# Stage 2: Python backend with frontend static files
FROM ghcr.io/astral-sh/uv:python3.13-bookworm FROM ghcr.io/astral-sh/uv:python3.13-bookworm
LABEL authors="lucasoskorep" LABEL authors="lucasoskorep"
WORKDIR /app WORKDIR /app
# Copy dependency files and install dependencies only (not the project itself)
COPY pyproject.toml uv.lock README.md ./ COPY pyproject.toml uv.lock README.md ./
RUN uv sync --frozen --no-dev --no-install-project RUN uv sync --frozen --no-dev --no-install-project
# Copy source code
COPY mta_api_client ./mta_api_client COPY mta_api_client ./mta_api_client
COPY mta_sign_server ./mta_sign_server COPY mta_sign_server ./mta_sign_server
COPY main.py stops.txt ./ COPY main.py stops.txt ./
# Copy the built frontend from the first stage
COPY --from=frontend-builder /build/mta-sign-ui/out ./static COPY --from=frontend-builder /build/mta-sign-ui/out ./static
# Now install the project
RUN uv sync --frozen --no-dev RUN uv sync --frozen --no-dev
EXPOSE 8000 EXPOSE 8000