This repository has been archived on 2026-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2025-10-17 00:09:26 +02:00

9 lines
128 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY ../requirements.txt .
RUN pip install --no-cache-dir -r ../requirements.txt
COPY . .