Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
##### Base Stage #####
FROM python:3.14-slim-trixie AS base
FROM ubuntu:24.04 AS base

# Set default path
ENV PATH="/app/.venv/bin:${PATH}"
ENV UV_PYTHON_INSTALL_DIR="/app/"

##### Builder Stage #####
FROM base AS builder
Expand All @@ -11,8 +12,7 @@ FROM base AS builder
WORKDIR /app

# Create virtualenv and install Python packages
RUN pip install --no-cache-dir pip -U && \
pip install --no-cache-dir uv
COPY --from=docker.io/astral/uv:latest /uv /bin/
COPY ./uv.lock uv.lock
COPY ./pyproject.toml pyproject.toml
RUN uv sync --no-dev --frozen
Expand Down
Loading