aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2020-11-19 00:49:40 +0100
committerGravatar GitHub <[email protected]>2020-11-19 00:49:40 +0100
commit2c17c3d6e752494573b77c71abf1cd8b461a7a81 (patch)
treead9f2aad5cda66e7cc36f8e219f4a929c66510f4 /Pipfile
parentMerge pull request #78 - Update to Python 3.9 (diff)
parentFix 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--Pipfile22
1 files changed, 5 insertions, 17 deletions
diff --git a/Pipfile b/Pipfile
index 8c55df6..237c1fa 100644
--- a/Pipfile
+++ b/Pipfile
@@ -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 \
.
"""