aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile15
1 files changed, 9 insertions, 6 deletions
diff --git a/Pipfile b/Pipfile
index 8c55df6..12fa52b 100644
--- a/Pipfile
+++ b/Pipfile
@@ -67,20 +67,23 @@ build = """
"""
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 \
.
"""