diff options
| author | 2018-06-11 09:27:35 +0000 | |
|---|---|---|
| committer | 2018-06-11 09:27:35 +0000 | |
| commit | 5e57c9c1f64cd750c25b99467dd57ec49addb624 (patch) | |
| tree | 491ab31f565eb687ec07ad7bb4b3e4f702a06b54 /Pipfile | |
| parent | Force logger handlers in a safer way (diff) | |
| parent | adds 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-- | Pipfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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" |