Skip to content

Commit

Permalink
Use podman
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoheiu committed Nov 8, 2023
1 parent 5e9f535 commit 7fdbf9a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ git:

build:
npm install --package-lock-only
sudo docker build --tag=kyoheiudev/carbon:$(VER) .
podman build --tag=kyoheiudev/carbon:$(VER) .

push:
sudo docker push kyoheiudev/carbon:$(VER)
podman push kyoheiudev/carbon:$(VER)

build-all:
npm install --package-lock-only
cd axum && cargo generate-lockfile
sudo docker build --tag=kyoheiudev/carbon:$(F_VER) .
cd axum && sudo docker build --tag=kyoheiudev/carbon-git:$(B_VER) .
podman build --tag=kyoheiudev/carbon:$(F_VER) .
cd axum && podman build --tag=kyoheiudev/carbon-git:$(B_VER) .

push-all:
sudo docker push kyoheiudev/carbon:$(F_VER)
sudo docker push kyoheiudev/carbon-git:$(B_VER)
podman push kyoheiudev/carbon:$(F_VER)
podman push kyoheiudev/carbon-git:$(B_VER)

0 comments on commit 7fdbf9a

Please sign in to comment.