feat: tag docker img with version 0.1.0

This commit is contained in:
Aravinth Manivannan 2022-04-09 11:03:28 +05:30
parent 38d43a0ea2
commit 609373786c
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 5 additions and 1 deletions

View File

@ -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