feat: tag docker img with version 0.1.0
This commit is contained in:
parent
38d43a0ea2
commit
609373786c
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -14,11 +14,15 @@ doc: ## Prepare documentation
|
|||
cargo doc --no-deps --workspace --all-features
|
||||
|
||||
docker: ## Build docker images
|
||||
docker build -t realaravinth/pages:master -t realaravinth/pages:latest .
|
||||
docker build \
|
||||
-t realaravinth/pages:master \
|
||||
-t realaravinth/pages:latest \
|
||||
-t realaravinth/pages:0.1.0 .
|
||||
|
||||
docker-publish: docker ## Build and publish docker images
|
||||
docker push realaravinth/pages:master
|
||||
docker push realaravinth/pages:latest
|
||||
docker push realaravinth/pages:0.1.0
|
||||
|
||||
lint: ## Lint codebase
|
||||
cargo fmt -v --all -- --emit files
|
||||
|
|
Loading…
Reference in a new issue