-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
49 lines (35 loc) · 1.61 KB
/
Copy pathDockerfile
File metadata and controls
49 lines (35 loc) · 1.61 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
# https://github.com/astral-sh/uv-docker-example/blob/main/multistage.Dockerfile
# An example using multi-stage image builds to create a final image without uv.
# First, build the application in the `/app` directory.
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS builder
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
WORKDIR /app
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 --frozen --no-install-project --no-dev
ADD . /app
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --frozen --no-dev
# Install uwsgi in the virtualenv (requires build tools)
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential python3-dev \
&& uv pip install uwsgi==2.0.23 \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Then, use a final image without uv
FROM python:3.12-slim-bookworm
# It is important to use the image that matches the builder, as the path to the
# Python executable must be the same, e.g., using `python:3.11-slim-bookworm`
# will fail.
# Install runtime dependencies for uwsgi
RUN apt-get update && apt-get install -y --no-install-recommends \
libexpat1 \
libxml2 \
&& rm -rf /var/lib/apt/lists/*
# Copy the application from the builder
COPY --from=builder --chown=app:app /app /app
# Place executables in the environment at the front of the path
ENV PATH="/app/.venv/bin:$PATH"
WORKDIR /app
# Run uwsgi.ini when the container launches
CMD ["bash", "-c", "PORT=\"${PORT:=5000}\" && uwsgi --ini uwsgi.ini --http :${PORT}"]