Skip to content

Commit 6103386

Browse files
committed
fix docker
1 parent 48318f7 commit 6103386

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

deployment/modules/gcp/cloudbuild/conformance/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,16 @@ resource "google_cloudbuild_trigger" "build_trigger" {
7575
]
7676
}
7777

78-
## Build the SCTFE GCP Docker image.
78+
## Build TesseraCT GCP Docker image.
7979
## This will be used by the building the conformance Docker image which includes
8080
## the test data.
8181
step {
8282
id = "docker_build_sctfe_gcp"
8383
name = "gcr.io/cloud-builders/docker"
8484
args = [
8585
"build",
86-
"-t", "sctfe-gcp:$SHORT_SHA",
87-
"-t", "sctfe-gcp:latest",
86+
"-t", "tesseract-gcp:$SHORT_SHA",
87+
"-t", "tesseract-gcp:latest",
8888
"-f", "./cmd/gcp/Dockerfile",
8989
"."
9090
]

deployment/modules/gcp/cloudbuild/tesseract/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ resource "google_cloudbuild_trigger" "build_trigger" {
6060
}
6161

6262
build {
63-
## Build the SCTFE GCP Docker image.
63+
## Build TesseraCT GCP Docker image.
6464
## This will be used by the building the conformance Docker image which includes
6565
## the test data.
6666
step {
6767
id = "docker_build_sctfe_gcp"
6868
name = "gcr.io/cloud-builders/docker"
6969
args = [
7070
"build",
71-
"-t", "sctfe-gcp:$SHORT_SHA",
72-
"-t", "sctfe-gcp:latest",
71+
"-t", "tesseract-gcp:$SHORT_SHA",
72+
"-t", "tesseract-gcp:latest",
7373
"-f", "./cmd/gcp/Dockerfile",
7474
"."
7575
]

0 commit comments

Comments
 (0)