aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-06-11 09:27:35 +0000
committerGravatar Gareth Coles <[email protected]>2018-06-11 09:27:35 +0000
commit5e57c9c1f64cd750c25b99467dd57ec49addb624 (patch)
tree491ab31f565eb687ec07ad7bb4b3e4f702a06b54 /Pipfile
parentForce logger handlers in a safer way (diff)
parentadds a ci container to speed up build times (diff)
Merge branch 'ci-container' into 'master'
adds a ci container to speed up build times See merge request discord-python/projects/bot!2
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
index e6d1366c6..9b0e530ec 100644
--- a/Pipfile
+++ b/Pipfile
@@ -39,7 +39,10 @@ python_version = "3.6"
[scripts]
start = "python -m bot"
+lint = "python -m flake8"
build = "docker build -t pythondiscord/bot:latest -f docker/Dockerfile ."
push = "docker push pythondiscord/bot:latest"
buildbase = "docker build -t pythondiscord/bot-base:latest -f docker/Dockerfile.base ."
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"