build confd from source (multiarch)
Some checks failed
Build Docker images / docker (eumau/debian, , bookworm) (push) Failing after 5m24s
Build Docker images / docker (eumau/debian, , buster) (push) Has been cancelled
Build Docker images / docker (eumau/debian, -slim, bookworm) (push) Has been cancelled
Build Docker images / docker (eumau/debian, -slim, bullseye) (push) Has been cancelled
Build Docker images / docker (eumau/debian, -slim, buster) (push) Has been cancelled
Build Docker images / docker (eumau/debian, , bullseye) (push) Has been cancelled

This commit is contained in:
Mauro Torrez 2024-02-27 15:22:32 -03:00
parent 6bd9b7f10a
commit a0f34cc3b1
2 changed files with 14 additions and 22 deletions

View File

@ -35,25 +35,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build amd64
uses: docker/build-push-action@v5
with:
load: true
tags: ${{ matrix.repo }}:${{ matrix.version }}${{ matrix.variant }}
platforms: linux/amd64
build-args: |
TARGET_ARCH=amd64
-
name: Build arm64
uses: docker/build-push-action@v5
with:
load: true
tags: ${{ matrix.repo }}:${{ matrix.version }}${{ matrix.variant }}
platforms: linux/arm64
build-args: |
TARGET_ARCH=arm64
-
name: Push images
name: Build and push image
uses: docker/build-push-action@v5
with:
push: true

View File

@ -1,8 +1,18 @@
ARG DEBIAN_VERSION=bullseye-slim
FROM debian:${DEBIAN_VERSION}
FROM golang:1.9-alpine as confd
ARG CONFD_VERSION=0.16.0
ARG TARGET_ARCH=amd64
ADD https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-linux-${TARGET_ARCH} /usr/local/bin/confd
ADD https://github.com/kelseyhightower/confd/archive/v${CONFD_VERSION}.tar.gz /tmp/
RUN apk add --no-cache \
bzip2 \
make && \
mkdir -p /go/src/github.com/kelseyhightower/confd && \
cd /go/src/github.com/kelseyhightower/confd && \
tar --strip-components=1 -zxf /tmp/v${CONFD_VERSION}.tar.gz && \
go install github.com/kelseyhightower/confd && \
rm -rf /tmp/v${CONFD_VERSION}.tar.gz
FROM debian:${DEBIAN_VERSION}
COPY --from=confd /go/bin/confd /usr/local/bin/confd
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 \
&& mkdir -p /etc/confd/conf.d /etc/confd/templates \