-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
40 lines (30 loc) · 1.26 KB
/
Dockerfile
File metadata and controls
40 lines (30 loc) · 1.26 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
# Based on https://github.com/astral-sh/uv-docker-example/blob/main/multistage.Dockerfile
FROM ghcr.io/astral-sh/uv:python3.14-trixie-slim AS builder
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
# Omit development dependencies
ENV UV_NO_DEV=1 UV_NO_DEFAULT_GROUPS=1
# Use the system Python and do not download another Python version
ENV UV_PYTHON_DOWNLOADS=0
WORKDIR /bot
RUN --mount=type=cache,target=/root/.cache/uv \
--mount=type=bind,source=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
uv sync --locked --all-extras --no-install-project
COPY . /bot
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --locked --all-extras \
&& rm /bot/uv.lock
# Then, use a final image without uv (must match the Python used in the builder)
FROM python:3.14-slim-trixie
# Setup a non-root user
RUN groupadd --system --gid 999 nonroot \
&& useradd --system --gid 999 --uid 999 --create-home nonroot
# Copy the application from the builder
COPY --from=builder --chown=nonroot:nonroot /bot /bot
# Place executables in the environment at the front of the path
ENV PATH="/bot/.venv/bin:$PATH"
# Use the non-root user to run our application
USER nonroot
# Use `/bot` as the working directory
WORKDIR /bot
CMD ["python", "start.py"]