From 27298bbf6f8c8cee4f603666e46155e3fec89dda Mon Sep 17 00:00:00 2001 From: Sebastiaan Zeeff Date: Wed, 18 Nov 2020 23:44:49 +0100 Subject: Remove redundant build commands for Pipfile I've removed the redundant intermediate image build commands from the Pipfile. Since everything is now contained in one Dockerfile, we can simply build the final image in one go. --- Pipfile | 14 -------------- README.md | 4 +--- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/Pipfile b/Pipfile index 0aaada1..af48f23 100644 --- a/Pipfile +++ b/Pipfile @@ -64,20 +64,6 @@ build = """ -f docker/Dockerfile \ . """ -buildbase = """ - docker build \ - -t ghcr.io/python-discord/snekbox-base:latest \ - -f docker/Dockerfile \ - --target base \ - . -""" -buildvenv = """ - docker build \ - -t ghcr.io/python-discord/snekbox-venv:latest \ - -f docker/Dockerfile \ - --target venv \ - . -""" builddev = """ docker build \ -t ghcr.io/python-discord/snekbox-venv:dev \ diff --git a/README.md b/README.md index 4ebe3b6..6765260 100644 --- a/README.md +++ b/README.md @@ -67,11 +67,9 @@ pipenv run lint ### Running snekbox -The Docker images can be built with: +The Docker image can be built with: ``` -pipenv run buildbase -pipenv run buildvenv pipenv run build ``` -- cgit v1.2.3