2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-10 00:37:53 +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' if: env.IS_AUTHORIZED_RUN == 'true'
with: with:
files: docker-bake.hcl files: docker-bake.hcl
targets: bench-build targets: bench
push: true push: true
build_main: build_main:

View File

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