From c6efe0289df0884d4176fead09af1a20861fc9f2 Mon Sep 17 00:00:00 2001 From: Boofdev Date: Sun, 3 Mar 2024 18:42:34 +0100 Subject: [PATCH] fix --- makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/makefile b/makefile index 647d52d..655f408 100644 --- a/makefile +++ b/makefile @@ -1,13 +1,11 @@ docker-build: echo "Building docker images" docker build --pull --no-cache --progress plain --rm -f "frontend/dockerfile" -t yapc-frontend:latest "frontend" & - docker build --pull --no-cache --progress plain --rm -f "backend/dockerfile" -t yapc:latest "backend" & - wait + docker build --pull --no-cache --progress plain --rm -f "backend/dockerfile" -t yapc:latest "backend" docker-push: echo "Pushing docker images" docker image push docker.io/hexahigh/yapc:latest & - docker image push docker.io/hexahigh/yapc-frontend:latest & - wait + docker image push docker.io/hexahigh/yapc-frontend:latest docker: docker-build docker-push \ No newline at end of file