Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions distribution/docker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ project.ext {

void addCopyDockerContextTask(Architecture architecture, DockerBase base) {
if (base != DockerBase.ALMALINUX) {
throw new GradleException("The only allowed docker base image for builds is CENTOS")
throw new GradleException("The only allowed docker base image for builds is ALMALINUX")
}

tasks.register(taskName("copy", architecture, base, "DockerContext"), Sync) {
Expand Down Expand Up @@ -209,7 +209,7 @@ tasks.named("check").configure {

void addBuildDockerImage(Architecture architecture, DockerBase base) {
if (base != DockerBase.ALMALINUX) {
throw new GradleException("The only allowed docker base image for builds is CENTOS")
throw new GradleException("The only allowed docker base image for builds is ALMALINUX")
}

final TaskProvider<DockerBuildTask> buildDockerImageTask =
Expand All @@ -232,7 +232,7 @@ void addBuildDockerImage(Architecture architecture, DockerBase base) {
}

for (final Architecture architecture : Architecture.values()) {
// We only create Docker images for the distribution on CentOS.
// We only create Docker images for the distribution on AlmaLinux.
for (final DockerBase base : DockerBase.values()) {
if (base == DockerBase.ALMALINUX) {
addCopyDockerContextTask(architecture, base)
Expand Down
Loading