mirror of
https://github.com/NohamR/AFP-RSS.git
synced 2026-07-11 18:59:56 +00:00
15 lines
207 B
Docker
15 lines
207 B
Docker
FROM python:3.11-slim
|
|
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml ./
|
|
|
|
RUN uv sync --no-dev
|
|
|
|
COPY main.py ./
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["uv", "run", "python", "main.py"] |