Skip to content

Commit

Permalink
1 image ref to change when we bump ubuntu + fix toil-storage build
Browse files Browse the repository at this point in the history
  • Loading branch information
solsson committed May 24, 2024
1 parent 38a1b44 commit fba3992
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,20 @@ jobs:
uses: docker/setup-buildx-action@v3

### build steps below are generated ###
-
name: Build and push docker-base latest
uses: docker/build-push-action@v5
env:
SOURCE_DATE_EPOCH: 0
with:
context: docker-base
tags: |
ghcr.io/yolean/docker-base:latest
ghcr.io/yolean/docker-base:${{ github.sha }}
platforms: linux/amd64,linux/arm64/v8
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
-
name: Build and push builder-base latest
uses: docker/build-push-action@v5
Expand Down Expand Up @@ -410,6 +424,8 @@ jobs:
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
build-contexts: |
yolean/docker-base=docker-image://ghcr.io/yolean/docker-base
-
name: Build and push runtime-quarkus-ubuntu latest
uses: docker/build-push-action@v5
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion git/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$TARGETPLATFORM ubuntu:24.04@sha256:562456a05a0dbd62a671c1854868862a4687bf979a96d48ae8e766642cd911e8
FROM --platform=$TARGETPLATFORM yolean/docker-base

RUN groupadd --gid 1000 git \
&& useradd --uid 1000 --gid git --shell /bin/bash --create-home git
Expand Down
2 changes: 1 addition & 1 deletion headless-chrome/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.04@sha256:562456a05a0dbd62a671c1854868862a4687bf979a96d48ae8e766642cd911e8
FROM --platform=$TARGETPLATFORM yolean/docker-base
ARG chrome_stage=stable
ARG chrome_build=125.0.6422.112-1

Expand Down
2 changes: 1 addition & 1 deletion runtime-quarkus-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ystack/runner
FROM --platform=$TARGETPLATFORM ubuntu:24.04@sha256:562456a05a0dbd62a671c1854868862a4687bf979a96d48ae8e766642cd911e8
FROM --platform=$TARGETPLATFORM yolean/docker-base

RUN set -ex; \
export DEBIAN_FRONTEND=noninteractive; \
Expand Down
1 change: 1 addition & 0 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if [[ ! -z "$SOURCE_COMMIT" ]]; then
fi

MULTIARCH_NONROOT="
docker-base
builder-base
builder-base-gcc
builder-base-gcloud
Expand Down

0 comments on commit fba3992

Please sign in to comment.