mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2025-01-22 05:13:54 +01:00
5 lines
215 B
Docker
5 lines
215 B
Docker
FROM mcr.microsoft.com/devcontainers/python:3.13-bookworm
|
|
RUN apt-get update && apt-get upgrade -y
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
COPY pyproject.toml uv.lock tasks.py ./
|
|
RUN uv sync --frozen
|