Skip to content

Commit

Permalink
fix: consistently use debian_base as output of debian/base.Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc committed Jul 12, 2024
1 parent f4be22b commit 2ad97ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion containers/debian/base.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#syntax=docker/dockerfile:1.4
ARG BASE_IMAGE="amd64/debian:stable-slim"
ARG BUILD_IMAGE="debian_stable_base"
ARG BUILD_IMAGE="debian_base"

# Minimal container based on Debian base systems for up-to-date packages.
FROM ${BASE_IMAGE}
Expand Down
4 changes: 2 additions & 2 deletions containers/jug/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#syntax=docker/dockerfile:1.4
ARG DOCKER_REGISTRY="eicweb/"
ARG BUILDER_IMAGE="debian_stable_base"
ARG RUNTIME_IMAGE="debian_stable_base"
ARG BUILDER_IMAGE="debian_base"
ARG RUNTIME_IMAGE="debian_base"
ARG INTERNAL_TAG="testing"

## ========================================================================================
Expand Down
4 changes: 2 additions & 2 deletions containers/jug/dev.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ variable "BUILD_TYPE" { default = "default" }

# Variables whose defaults can be overridden on build
variable "DOCKER_REGISTRY" { default = join("/", [ CI_REGISTRY, CI_PROJECT_PATH, ""]) }
variable "BUILDER_IMAGE" { default = null }
variable "RUNTIME_IMAGE" { default = null }
variable "BUILDER_IMAGE" { default = "debian_base" }
variable "RUNTIME_IMAGE" { default = "debian_base" }

variable "S3_ACCESS_KEY" { default = null }
variable "S3_SECRET_KEY" { default = null }
Expand Down

0 comments on commit 2ad97ec

Please sign in to comment.