Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hexahigh committed Mar 3, 2024
1 parent 416a28a commit c6efe02
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c6efe02

Please sign in to comment.