Files
schwab-mcp-custom/Dockerfile
b3nw 5a961a3f28
Some checks failed
Build and Push Docker Image / build (push) Failing after 9s
fix(ci): use username:token format for HTTPS git auth
2026-04-25 01:00:47 +00:00

39 lines
1023 B
Docker

FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS builder
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
ARG GIT_TOKEN=""
RUN if [ -n "$GIT_TOKEN" ]; then \
git config --global url."https://b3nw:${GIT_TOKEN}@gitea.ext.ben.io/".insteadOf "ssh://gitea@git.local.ben.io/" && \
git config --global --add url."https://b3nw:${GIT_TOKEN}@gitea.ext.ben.io/".insteadOf "ssh://git.local.ben.io/"; \
fi
COPY pyproject.toml uv.lock ./
RUN uv sync --frozen --no-dev --no-install-project
COPY . .
RUN uv sync --frozen --no-dev
FROM python:3.12-slim-bookworm
RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Copy the environment from the builder
COPY --from=builder /app /app
# Set up environment variables
ENV PATH="/app/.venv/bin:$PATH"
ENV PORT=8000
# Expose the port
EXPOSE 8000
# Run the server
CMD ["python", "server.py"]