arch
Some checks failed
Build Docker image / docker (arm64, , buster) (push) Waiting to run
Build Docker image / docker (arm64, -slim, bookworm) (push) Waiting to run
Build Docker image / docker (arm64, -slim, bullseye) (push) Waiting to run
Build Docker image / docker (arm64, -slim, buster) (push) Waiting to run
Build Docker image / docker (amd64, , bookworm) (push) Failing after 16s
Build Docker image / docker (amd64, , bullseye) (push) Failing after 14s
Build Docker image / docker (amd64, , buster) (push) Failing after 14s
Build Docker image / docker (amd64, -slim, bookworm) (push) Failing after 14s
Build Docker image / docker (amd64, -slim, bullseye) (push) Failing after 13s
Build Docker image / docker (amd64, -slim, buster) (push) Failing after 14s
Build Docker image / docker (arm64, , bookworm) (push) Failing after 13s
Build Docker image / docker (arm64, , bullseye) (push) Has been cancelled

This commit is contained in:
Mauro Torrez 2024-02-27 12:55:33 -03:00
parent 7fb3295695
commit c4ccfb4b1e
2 changed files with 7 additions and 7 deletions

View File

@ -12,9 +12,9 @@ jobs:
strategy: strategy:
fail-fast: true fail-fast: true
matrix: matrix:
platform: arch:
- linux/amd64 - amd64
- linux/arm64 - arm64
version: version:
- buster - buster
- bullseye - bullseye
@ -41,6 +41,6 @@ jobs:
with: with:
push: true push: true
tags: eumau/debian:${{ matrix.version }}${{ matrix.variant }} tags: eumau/debian:${{ matrix.version }}${{ matrix.variant }}
platforms: ${{ matrix.platform }} platforms: linux/${{ matrix.arch }}
build-args: | build-args: |
TARGET_PLATFORM=${{ matrix.platform }} TARGET_ARCH=${{ matrix.arch }}

View File

@ -1,8 +1,8 @@
ARG DEBIAN_VERSION=bullseye-slim ARG DEBIAN_VERSION=bullseye-slim
ARG TARGET_PLATFORM=linux/amd64 ARG TARGET_ARCH=amd64
FROM debian:${DEBIAN_VERSION} FROM debian:${DEBIAN_VERSION}
ARG CONFD_VERSION=0.16.0 ARG CONFD_VERSION=0.16.0
ADD https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-${TARGET_PLATFORM//\//-} /usr/local/bin/confd ADD https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-linux-${TARGET_ARCH} /usr/local/bin/confd
RUN mkdir -p /start.d \ RUN mkdir -p /start.d \
&& printf '#!/bin/bash\nset -e\n/usr/local/bin/confd -onetime -backend env\nrun-parts -v /start.d\nexec ${@}\n' > /entrypoint.sh \ && printf '#!/bin/bash\nset -e\n/usr/local/bin/confd -onetime -backend env\nrun-parts -v /start.d\nexec ${@}\n' > /entrypoint.sh \
&& mkdir -p /etc/confd/conf.d /etc/confd/templates \ && mkdir -p /etc/confd/conf.d /etc/confd/templates \