From 5221271b1479c6b39ae5f182e60ef3b28b5755ca Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 9 Aug 2023 14:30:13 -0700 Subject: [PATCH] Fix the release Dockerfile by pointing to the correct PyPI index --- Dockerfile.release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.release b/Dockerfile.release index 890ef69..67cf6fe 100644 --- a/Dockerfile.release +++ b/Dockerfile.release @@ -1,6 +1,6 @@ FROM python:3.11-alpine -RUN pip install --extra-index-url https://git.libertytechforce.com/api/packages/raoul/pypi/simple/ http2smtp uvicorn[standard] +RUN pip install --extra-index-url https://git.libertytechforce.com/api/packages/libertytechforce/pypi/simple/ http2smtp uvicorn[standard] EXPOSE 8000 CMD ["uvicorn", "--host", "0.0.0.0", "--port", "8000", "--proxy-headers", "http2smtp.app:app"] -- 2.40.1