This commit is contained in:
2026-02-28 08:55:23 -05:00
commit f225eb2dc0
10 changed files with 1149 additions and 0 deletions

13
Containerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM ghcr.io/astral-sh/uv:python3.13-alpine
# Copy the project into the image
COPY . /app
# Disable development dependencies
ENV UV_NO_DEV=1
# Sync the project into a new environment, asserting the lockfile is up to date
WORKDIR /app
RUN uv sync --locked
CMD uv run main.py