diff options
| author | 2020-11-19 00:49:40 +0100 | |
|---|---|---|
| committer | 2020-11-19 00:49:40 +0100 | |
| commit | 2c17c3d6e752494573b77c71abf1cd8b461a7a81 (patch) | |
| tree | ad9f2aad5cda66e7cc36f8e219f4a929c66510f4 /Pipfile | |
| parent | Merge pull request #78 - Update to Python 3.9 (diff) | |
| parent | Fix Dockerfile paths & revert error in Dockerfile (diff) | |
Merge pull request #79 from python-discord/sebastiaan/backend/migrate-ci-to-github-actions
Migrate to GitHub Actions and GitHub Container Registry
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 22 |
1 files changed, 5 insertions, 17 deletions
@@ -41,7 +41,6 @@ flake8-tidy-imports = "~= 4.1" flake8-todo = "~= 0.7" pre-commit = "~= 2.8.2" pydocstyle = "~= 5.1" -unittest-xml-reporting = "~= 3.0" [requires] python_version = "3.9" @@ -61,26 +60,15 @@ snekbox = "gunicorn -c config/gunicorn.conf.py snekbox.api.app" devsh = "sh scripts/dev.sh" build = """ docker build \ - -t pythondiscord/snekbox:latest \ - -f docker/Dockerfile \ - . -""" -buildbase = """ - docker build \ - -t pythondiscord/snekbox-base:latest \ - -f docker/base.Dockerfile \ - . -""" -buildvenv = """ - docker build \ - -t pythondiscord/snekbox-venv:latest \ - -f docker/venv.Dockerfile \ + -t ghcr.io/python-discord/snekbox:latest \ + -f Dockerfile \ . """ builddev = """ docker build \ - -t pythondiscord/snekbox-venv:dev \ - -f docker/venv.Dockerfile \ + -t ghcr.io/python-discord/snekbox-venv:dev \ + -f Dockerfile \ + --target venv \ --build-arg DEV=1 \ . """ |