aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile17
1 files changed, 10 insertions, 7 deletions
diff --git a/Pipfile b/Pipfile
index 8c55df6..a8886c6 100644
--- a/Pipfile
+++ b/Pipfile
@@ -61,26 +61,29 @@ snekbox = "gunicorn -c config/gunicorn.conf.py snekbox.api.app"
devsh = "sh scripts/dev.sh"
build = """
docker build \
- -t pythondiscord/snekbox:latest \
+ -t ghcr.io/python-discord/snekbox:latest \
-f docker/Dockerfile \
.
"""
buildbase = """
docker build \
- -t pythondiscord/snekbox-base:latest \
- -f docker/base.Dockerfile \
+ -t ghcr.io/python-discord/snekbox-base:latest \
+ -f docker/Dockerfile \
+ --target base \
.
"""
buildvenv = """
docker build \
- -t pythondiscord/snekbox-venv:latest \
- -f docker/venv.Dockerfile \
+ -t ghcr.io/python-discord/snekbox-venv:latest \
+ -f docker/Dockerfile \
+ --target venv \
.
"""
builddev = """
docker build \
- -t pythondiscord/snekbox-venv:dev \
- -f docker/venv.Dockerfile \
+ -t ghcr.io/python-discord/snekbox-venv:dev \
+ -f docker/Dockerfile \
+ --target venv \
--build-arg DEV=1 \
.
"""