mirror of
https://github.com/driftywinds/rssrise.git
synced 2025-12-19 11:33:32 +00:00
13 lines
180 B
Docker
13 lines
180 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY main.py .
|
|
|
|
CMD ["python3", "main.py"]
|