Add docker files
This commit is contained in:
parent
e2045d31d6
commit
c3b185b592
3 changed files with 43 additions and 0 deletions
15
docker-bake.hcl
Normal file
15
docker-bake.hcl
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
variable "REG" {
|
||||
default = "registry.serguzim.me"
|
||||
}
|
||||
variable "REPO" {
|
||||
default = "emgauwa/controller"
|
||||
}
|
||||
variable "TAG" {
|
||||
default = "latest"
|
||||
}
|
||||
|
||||
target "default" {
|
||||
output = ["type=docker"]
|
||||
dockerfile = "./Dockerfile"
|
||||
tags = ["${REG}/${REPO}:latest", "${REG}/${REPO}:${TAG}"]
|
||||
}
|
||||
Loading…
Reference in a new issue