Update URLs in news data update Dockerfil to point to new domain

This commit is contained in:
moshferatu 2024-07-03 20:11:00 -07:00
parent fe28f2e2be
commit 49be441e97

View File

@ -2,6 +2,6 @@ FROM python:3.11
COPY update_news.py .
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN pip install --index-url https://dev.moshington.com/api/packages/moshferatu/pypi/simple/ database
RUN pip install --index-url https://dev.moshington.com/api/packages/moshferatu/pypi/simple/ news
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
CMD ["python", "./update_news.py"]