
All checks were successful
Build Docker images / docker (eumau/debian, , bookworm) (push) Successful in 24s
Build Docker images / docker (eumau/debian, , bullseye) (push) Successful in 29s
Build Docker images / docker (eumau/debian, , buster) (push) Successful in 25s
Build Docker images / docker (eumau/debian, -slim, bookworm) (push) Successful in 28s
Build Docker images / docker (eumau/debian, -slim, bullseye) (push) Successful in 24s
Build Docker images / docker (eumau/debian, -slim, buster) (push) Successful in 36s
19 lines
766 B
Docker
19 lines
766 B
Docker
ARG DEBIAN_VERSION=bullseye-slim
|
|
# FROM golang:${DEBIAN_VERSION%-*} as confd
|
|
# RUN apt-get update \
|
|
# && apt-get install -y \
|
|
# build-essential \
|
|
# && git clone https://github.com/kelseyhightower/confd.git \
|
|
# && cd confd \
|
|
# && make
|
|
|
|
FROM debian:${DEBIAN_VERSION}
|
|
# COPY --from=confd /go/confd/bin/confd /usr/local/bin/confd
|
|
ARG TARGETARCH
|
|
ADD https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-linux-${TARGETARCH} /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 \
|
|
&& chmod +x /usr/local/bin/confd /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|