aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Sebastiaan Zeeff <[email protected]>2020-11-18 13:59:08 +0100
committerGravatar Sebastiaan Zeeff <[email protected]>2020-11-18 13:59:30 +0100
commitcecad91334473652726d940426d26be7c23464e4 (patch)
treeccb677cc361f95fb401834ea721c6ad172477b05 /Pipfile
parentUse correct conditional expression for prod steps (diff)
Update files according to new CI setupsebastiaan/backend/cache-docker-images
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 \
.
"""