mirror of
https://github.com/Screenly/Anthias.git
synced 2025-12-23 22:38:05 -05:00
16 lines
279 B
Docker
16 lines
279 B
Docker
FROM python:3.11-bookworm
|
|
|
|
RUN apt-get update -y && \
|
|
pip install uv
|
|
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml uv.lock /app/
|
|
|
|
RUN uv sync --group docker-image-builder
|
|
|
|
RUN git config --global --add safe.directory /app
|
|
|
|
ENV VIRTUAL_ENV=/app/.venv
|
|
ENV PATH="${VIRTUAL_ENV}/bin:$PATH"
|