aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-13 18:02:36 +0000
committerGravatar Johannes Christ <[email protected]>2018-09-13 18:02:36 +0000
commitbe57a9bfc02fe544f208f12ba22c5c3af634f1e7 (patch)
tree8156141a17262dd52149a22d2f0b34e125dcd297 /Pipfile
parentMerge branch 'apostrophes-in-otnames' into 'master' (diff)
parentuse system flag instead of using venv (diff)
Merge branch 'pipenv-docker-system' into 'master'
use system flag instead of using venv See merge request python-discord/projects/bot!52
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Pipfile b/Pipfile
index b6f7aeb6f..d3d315e6e 100644
--- a/Pipfile
+++ b/Pipfile
@@ -40,9 +40,12 @@ python_version = "3.6"
[scripts]
start = "python -m bot"
lint = "python -m flake8"
-build = "docker build -t pythondiscord/bot:latest -f docker/Dockerfile ."
+
+build = "docker build -t pythondiscord/bot:latest -f docker/bot.Dockerfile ."
push = "docker push pythondiscord/bot:latest"
-buildbase = "docker build -t pythondiscord/bot-base:latest -f docker/Dockerfile.base ."
+
+buildbase = "docker build -t pythondiscord/bot-base:latest -f docker/base.Dockerfile ."
pushbase = "docker push pythondiscord/bot-base:latest"
+
buildci = "docker build -t pythondiscord/bot-ci:latest -f docker/ci.Dockerfile ."
pushci = "docker push pythondiscord/bot-ci:latest"