-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
50 lines (34 loc) · 1.22 KB
/
Copy pathDockerfile
File metadata and controls
50 lines (34 loc) · 1.22 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Multistage build using standalone Python builds with uv
# First, build the application in the `/app` directory
FROM ghcr.io/astral-sh/uv:bookworm-slim AS builder
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
# Configure the Python directory so it is consistent
ENV UV_PYTHON_INSTALL_DIR=/python
# Only use the managed Python version
ENV UV_PYTHON_PREFERENCE=only-managed
# Install Python before the project for caching
RUN uv python install 3.12
WORKDIR /app
# Copy pyproject.toml and install dependencies
COPY pyproject.toml .
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync
# Copy executor code and config
COPY config.py .
COPY executor_service.py .
# Final image without uv
FROM debian:bookworm-slim
# Setup a non-root user
RUN groupadd --system --gid 999 executor \
&& useradd --system --gid 999 --uid 999 --create-home executor
# Copy the Python version
COPY --from=builder --chown=executor:executor /python /python
# Copy the application from the builder
COPY --from=builder --chown=executor:executor /app /app
# Place executables in the environment at the front of the path
ENV PATH="/app/.venv/bin:$PATH"
# Use the non-root user
USER executor
WORKDIR /app
EXPOSE 4323
CMD ["python", "executor_service.py"]