2023-10-25 14:41:47 +00:00
|
|
|
FROM python:3.11
|
|
|
|
COPY update_news.py .
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
2024-07-04 03:11:00 +00:00
|
|
|
RUN pip install --index-url https://moshferatu.dev/api/packages/moshferatu/pypi/simple/ database
|
|
|
|
RUN pip install --index-url https://moshferatu.dev/api/packages/moshferatu/pypi/simple/ news
|
2023-10-25 14:41:47 +00:00
|
|
|
CMD ["python", "./update_news.py"]
|