File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM ghcr.io/astral-sh/uv:python3.13-bookworm
22
33WORKDIR /app
44COPY ./backend/api/uv.lock ./backend/api/pyproject.toml ./
5- RUN uv sync --frozen
5+ RUN uv sync --frozen && rm ./uv.lock ./pyproject.toml
66RUN apt-get update && apt-get install -y --no-install-recommends curl
77COPY ./envs/backend.env /opt/.env
88COPY ./backend/api /app/api
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM ghcr.io/astral-sh/uv:python3.13-bookworm
22
33WORKDIR /app
44COPY ./backend/mcp/uv.lock ./backend/mcp/pyproject.toml .
5- RUN uv sync --frozen
5+ RUN uv sync --frozen && rm ./uv.lock ./pyproject.toml
66RUN apt-get update && apt-get install -y --no-install-recommends \
77 curl && \
88 curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
You can’t perform that action at this time.
0 commit comments