-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
50 lines (40 loc) · 1.25 KB
/
Dockerfile
File metadata and controls
50 lines (40 loc) · 1.25 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
###########################################################
# Base Python image. Set shared environment variables.
FROM python:3.12-alpine AS base
ENV PYTHONUNBUFFERED=1 \
PYSETUP_PATH="/opt/pysetup" \
VENV_PATH="/opt/pysetup/.venv" \
UV_PYTHON_DOWNLOADS=never \
UV_COMPILE_BYTECODE=1 \
PYTHONUNBUFFERED=1
ENV PATH="$VENV_PATH/bin:$PATH"
###########################################################
# Builder stage. Build dependencies.
FROM base AS builder
RUN apk add --no-cache \
build-base \
curl \
netcat-openbsd \
bash
# Install uv
RUN curl -LsSf https://astral.sh/uv/install.sh | sh && \
mv ~/.local/bin/uv /usr/local/bin/ && \
uv --version
# Create virtual environment and install dependencies
WORKDIR $PYSETUP_PATH
RUN uv venv $VENV_PATH
COPY ./uv.lock ./pyproject.toml ./
RUN uv sync
###########################################################
# Production stage. Copy only runtime deps.
FROM base AS production
COPY --from=builder $VENV_PATH $VENV_PATH
COPY --chmod=755 entrypoint.sh /
# Create user with the name uvuser
RUN addgroup -g 1500 uvuser && \
adduser -D -u 1500 -G uvuser uvuser
COPY --chown=uvuser:uvuser . /code
USER uvuser
WORKDIR /code
EXPOSE 8000
ENTRYPOINT [ "/entrypoint.sh" ]