docker-image-debian/Dockerfile
Mauro Torrez 6d88501a81
Some checks failed
Build Docker images / docker (eumau/debian, , bullseye) (push) Failing after 17s
Build Docker images / docker (eumau/debian, , bookworm) (push) Failing after 19s
Build Docker images / docker (eumau/debian, , buster) (push) Failing after 14s
Build Docker images / docker (eumau/debian, -slim, bookworm) (push) Failing after 17s
Build Docker images / docker (eumau/debian, -slim, bullseye) (push) Failing after 16s
Build Docker images / docker (eumau/debian, -slim, buster) (push) Failing after 16s
Use builtin TARGETARCH arg
2024-02-27 17:23:27 -03:00

18 lines
751 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
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"]