Skip to content

Commit

Permalink
use correct export command from docker
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Dec 31, 2024
1 parent 5a96b03 commit d66fe23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ endif

export_base:
ifeq ($(_build_amd64),1)
docker export $(NAME)-base:current-amd64 | gzip > passenger-base-amd64.tar.gz
docker save $(NAME)-base:current-amd64 | gzip > passenger-base-amd64.tar.gz
endif
ifeq ($(_build_arm64),1)
docker export $(NAME)-base:current-arm64 | gzip > passenger-base-arm64.tar.gz
docker save $(NAME)-base:current-arm64 | gzip > passenger-base-arm64.tar.gz
endif

build_%:
Expand Down

0 comments on commit d66fe23

Please sign in to comment.