docker-image-debian/Dockerfile
Mauro Torrez c03c21438b
Some checks failed
Build Docker images / docker (eumau/debian, , bullseye) (push) Failing after 17s
Build Docker images / docker (eumau/debian, , bookworm) (push) Failing after 27s
Build Docker images / docker (eumau/debian, , buster) (push) Failing after 14s
Build Docker images / docker (eumau/debian, -slim, bookworm) (push) Failing after 27s
Build Docker images / docker (eumau/debian, -slim, bullseye) (push) Failing after 44s
Build Docker images / docker (eumau/debian, -slim, buster) (push) Failing after 25s
match golang and debian versions
2024-02-27 17:17:09 -03:00

17 lines
610 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
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"]