🗃️ Committing everything that changed 🗃️

Dockerfile
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/bin/start-ifconfig.sh
rootfs/usr/local/etc/
This commit is contained in:
casjay
2023-09-10 23:09:33 -04:00
parent 9bb1c257e8
commit cd9ff04e40
5 changed files with 1829 additions and 395 deletions

View File

@@ -28,7 +28,7 @@ FROM golang:1.15-buster AS src
ENV GO111MODULE=on CGO_ENABLED=0
WORKDIR /go/src/github.com/mpolden/echoip
RUN apt update && apt install -yy git
RUN git clone -q https://github.com/mpolden/echoip /go/src/github.com/mpolden/echoip
RUN git clone -q https://github.com/mpolden/echoip /go/src/github.com/mpolden/echoip
RUN cd /go/src/github.com/mpolden/echoip && make
FROM tianon/gosu:latest AS gosu