Little helper to run CNCF's k3s in Docker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
k3d/proxy/Dockerfile

17 lines
407 B

FROM nginx:1.25.1-alpine3.17
# TODO:_ consider switching to https://github.com/abtreece/confd to not maintain a custom fork anymore
ARG OS
ARG ARCH
ENV OS=${OS}
ENV ARCH=${ARCH}
COPY install-confd.sh /scripts/install-confd.sh
RUN mkdir -p /etc/confd \
&& /scripts/install-confd.sh
COPY templates /etc/confd/templates/
COPY conf.d /etc/confd/conf.d/
COPY nginx-proxy /usr/bin/
ENTRYPOINT nginx-proxy