-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpython.dockerfile
More file actions
31 lines (23 loc) · 873 Bytes
/
python.dockerfile
File metadata and controls
31 lines (23 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# The python version must match the version in .python-version
FROM ghcr.io/astral-sh/uv:python3.11-bookworm-slim AS builder
ARG HANDLER
ENV HANDLER=${HANDLER}
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy PYTHONPATH=.
WORKDIR /app
COPY uv.lock pyproject.toml /app/
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --frozen --no-install-project --no-dev --no-python-downloads
COPY . /app
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --frozen --no-dev --no-python-downloads
# Then, use a final image without uv
FROM python:3.11-slim-bookworm
ARG HANDLER
ENV HANDLER=${HANDLER} PYTHONPATH=.
# Copy the application from the builder
COPY --from=builder /app /app
WORKDIR /app
# Place executables in the environment at the front of the path
ENV PATH="/app/.venv/bin:$PATH"
# Run the service using the path to the handler
ENTRYPOINT python -u $HANDLER