Rename build/ dir to images/

This commit is contained in:
Lev Vereshchagin
2022-02-26 12:29:28 +03:00
parent b1ea7fd4bd
commit 5e0f1940f2
6 changed files with 22 additions and 22 deletions

View File

@@ -6,27 +6,27 @@ updates:
interval: daily interval: daily
- package-ecosystem: docker - package-ecosystem: docker
directory: build/bench directory: images/bench
schedule: schedule:
interval: daily interval: daily
- package-ecosystem: docker - package-ecosystem: docker
directory: build/nginx directory: images/nginx
schedule: schedule:
interval: daily interval: daily
- package-ecosystem: docker - package-ecosystem: docker
directory: build/worker directory: images/worker
schedule: schedule:
interval: daily interval: daily
- package-ecosystem: docker - package-ecosystem: docker
directory: build/socketio directory: images/socketio
schedule: schedule:
interval: daily interval: daily
- package-ecosystem: npm - package-ecosystem: npm
directory: build/socketio directory: images/socketio
schedule: schedule:
interval: daily interval: daily

View File

@@ -5,7 +5,7 @@ on:
branches: branches:
- main - main
paths: paths:
- build/bench/** - images/bench/**
- docker-bake.hcl - docker-bake.hcl
schedule: schedule:

View File

@@ -5,9 +5,9 @@ on:
branches: branches:
- main - main
paths: paths:
- build/nginx/** - images/nginx/**
- build/socketio/** - images/socketio/**
- build/worker/** - images/worker/**
- overrides/** - overrides/**
- tests/** - tests/**
- compose.yaml - compose.yaml

View File

@@ -5,9 +5,9 @@ on:
branches: branches:
- main - main
paths: paths:
- build/nginx/** - images/nginx/**
- build/socketio/** - images/socketio/**
- build/worker/** - images/worker/**
- overrides/** - overrides/**
- tests/** - tests/**
- compose.yaml - compose.yaml
@@ -18,9 +18,9 @@ on:
branches: branches:
- main - main
paths: paths:
- build/nginx/** - images/nginx/**
- build/socketio/** - images/socketio/**
- build/worker/** - images/worker/**
- overrides/** - overrides/**
- tests/** - tests/**
- compose.yaml - compose.yaml

View File

@@ -16,7 +16,7 @@ variable "ERPNEXT_VERSION" {
# Bench image # Bench image
target "bench" { target "bench" {
context = "build/bench" context = "images/bench"
target = "bench" target = "bench"
tags = ["frappe/bench:latest"] tags = ["frappe/bench:latest"]
} }
@@ -62,34 +62,34 @@ target "default-args" {
target "frappe-worker" { target "frappe-worker" {
inherits = ["default-args"] inherits = ["default-args"]
context = "build/worker" context = "images/worker"
target = "frappe" target = "frappe"
tags = tag("frappe-worker", "${FRAPPE_VERSION}") tags = tag("frappe-worker", "${FRAPPE_VERSION}")
} }
target "erpnext-worker" { target "erpnext-worker" {
inherits = ["default-args"] inherits = ["default-args"]
context = "build/worker" context = "images/worker"
target = "erpnext" target = "erpnext"
tags = tag("erpnext-worker", "${ERPNEXT_VERSION}") tags = tag("erpnext-worker", "${ERPNEXT_VERSION}")
} }
target "frappe-nginx" { target "frappe-nginx" {
inherits = ["default-args"] inherits = ["default-args"]
context = "build/nginx" context = "images/nginx"
target = "frappe" target = "frappe"
tags = tag("frappe-nginx", "${FRAPPE_VERSION}") tags = tag("frappe-nginx", "${FRAPPE_VERSION}")
} }
target "erpnext-nginx" { target "erpnext-nginx" {
inherits = ["default-args"] inherits = ["default-args"]
context = "build/nginx" context = "images/nginx"
target = "erpnext" target = "erpnext"
tags = tag("erpnext-nginx", "${ERPNEXT_VERSION}") tags = tag("erpnext-nginx", "${ERPNEXT_VERSION}")
} }
target "frappe-socketio" { target "frappe-socketio" {
inherits = ["default-args"] inherits = ["default-args"]
context = "build/socketio" context = "images/socketio"
tags = tag("frappe-socketio", "${FRAPPE_VERSION}") tags = tag("frappe-socketio", "${FRAPPE_VERSION}")
} }

View File

@@ -6,4 +6,4 @@ profile = black
known_third_party = frappe known_third_party = frappe
[codespell] [codespell]
skip = build/bench/Dockerfile skip = images/bench/Dockerfile