From febb0bd55a9845cfa9c238bff43950363293c77e Mon Sep 17 00:00:00 2001 From: Jason Date: Sat, 9 Jul 2022 13:22:52 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20=20modified:=20Dockerfi?= =?UTF-8?q?le=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1d4e735..c3da51d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ENV GO111MODULE=on CGO_ENABLED=0 RUN make # Run -FROM casjaysdev/alpine:latest as run +FROM casjaysdevdocker/alpine:latest as run COPY --from=build /go/bin/echoip /opt/echoip/ COPY ./html /opt/echoip/html COPY ./bin/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh @@ -19,12 +19,12 @@ ARG BUILD_DATE="$(date +'%Y-%m-%d %H:%M')" LABEL \ org.label-schema.name="ifconfig" \ org.label-schema.description="Sow ip information" \ - org.label-schema.url="https://github.com/casjaysdev/ifconfig" \ - org.label-schema.vcs-url="https://github.com/casjaysdev/ifconfig" \ + org.label-schema.url="https://hub.docker.com/r/casjaysdevdocker/ifconfig" \ + org.label-schema.vcs-url="https://github.com/casjaysdevdocker/ifconfig" \ org.label-schema.build-date=$BUILD_DATE \ org.label-schema.version=$BUILD_DATE \ org.label-schema.vcs-ref=$BUILD_DATE \ - org.label-schema.license="MIT" \ + org.label-schema.license="WTFPL" \ org.label-schema.vcs-type="Git" \ org.label-schema.schema-version="1.0" \ org.label-schema.vendor="CasjaysDev" \