Skip to content

Commit

Permalink
add makefile jobs for staging/sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
jancimertel committed Nov 26, 2024
1 parent 1805f15 commit 9277101
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
build-inkvisitor:
docker build -f Dockerfile -t inkvisitor:latest --build-arg="ENV=production" . && docker save inkvisitor:latest | gzip > inkvisitor.tar.gz

build-inkvisitor-staging:
docker build -f Dockerfile -t inkvisitor:staging --build-arg="ENV=staging" . && docker save inkvisitor:staging | gzip > inkvisitor-staging.tar.gz

build-inkvisitor-sandbox:
docker build -f Dockerfile -t inkvisitor:sandbox --build-arg="ENV=sandbox" . && docker save inkvisitor:sandbox | gzip > inkvisitor-sandbox.tar.gz

build-niort:
docker build -f Dockerfile -t inkvisitor:niort --build-arg="ENV=niort" . && docker save inkvisitor:niort | gzip > inkvisitor-niort.tar.gz

0 comments on commit 9277101

Please sign in to comment.