mirror of
https://github.com/aljazceru/IngestRSS.git
synced 2026-02-01 20:34:24 +01:00
8 lines
183 B
Docker
8 lines
183 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . .
|
|
ENV PYTHONPATH=/app
|
|
CMD ["python", "local_services/worker.py"]
|