2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-08 22:31:07 +00:00

Rename bench-build target to bench in bake file

This commit is contained in:
Lev Vereshchagin 2021-12-13 19:17:00 +03:00
parent e665b014ca
commit 085ca1e5d5
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ jobs:
if: env.IS_AUTHORIZED_RUN == 'true'
with:
files: docker-bake.hcl
targets: bench-build
targets: bench
push: true
build_main:

View File

@ -4,14 +4,14 @@
# Bench images
target "bench-build" {
target "bench" {
tags = ["frappe/bench:latest"]
dockerfile = "build/bench/Dockerfile"
target = "build"
}
target "bench-test" {
inherits = ["bench-build"]
inherits = ["bench"]
target = "test"
}