aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorGravatar Sebastiaan Zeeff <[email protected]>2020-11-16 22:10:59 +0100
committerGravatar Sebastiaan Zeeff <[email protected]>2020-11-16 22:10:59 +0100
commita19d42ce072d428af8d58cfc5fc8ed7d9d64ced0 (patch)
treef40b997786d4e206c87314d2005febb46f1324f4 /docker
parentCheck out repository to access files (diff)
Use GHCR containers in Dockerfiles
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile2
-rw-r--r--docker/venv.Dockerfile2
2 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index b6c2f77..d8b89ec 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,4 +1,4 @@
-FROM pythondiscord/snekbox-venv:latest
+FROM ghcr.io/python-discord/snekbox-venv:latest
ENTRYPOINT ["gunicorn"]
CMD ["-c", "config/gunicorn.conf.py", "snekbox.api.app"]
diff --git a/docker/venv.Dockerfile b/docker/venv.Dockerfile
index 5c0fcfc..27932cd 100644
--- a/docker/venv.Dockerfile
+++ b/docker/venv.Dockerfile
@@ -1,4 +1,4 @@
-FROM pythondiscord/snekbox-base:latest
+FROM ghcr.io/python-discord/snekbox-base:latest
ARG DEV
ENV PIP_NO_CACHE_DIR=false \