refactor: update links to new static-web-server organization

new organization link https://github.com/static-web-server
This commit is contained in:
Jose Quintana
2022-10-20 23:33:00 +02:00
parent d66494ccae
commit fb3fb235bb
24 changed files with 269 additions and 269 deletions

View File

@@ -14,7 +14,7 @@ RUN set -ex; \
"linux/arm/v6") target='arm-unknown-linux-musleabihf' ;; \
*) echo >&2 "error: unsupported $TARGETPLATFORM architecture"; exit 1 ;; \
esac; \
wget --quiet -O /tmp/static-web-server.tar.gz "https://github.com/joseluisq/static-web-server/releases/download/v${SERVER_VERSION}/static-web-server-v${SERVER_VERSION}-${target}.tar.gz"; \
wget --quiet -O /tmp/static-web-server.tar.gz "https://github.com/static-web-server/static-web-server/releases/download/v${SERVER_VERSION}/static-web-server-v${SERVER_VERSION}-${target}.tar.gz"; \
tar xzvf /tmp/static-web-server.tar.gz; \
cp static-web-server-v${SERVER_VERSION}-${target}/static-web-server /usr/local/bin/; \
rm -rf /tmp/static-web-server.tar.gz static-web-server-v${SERVER_VERSION}-${target}; \
@@ -26,7 +26,7 @@ ARG SERVER_VERSION=0.0.0
ENV SERVER_VERSION=${SERVER_VERSION}
LABEL version="${SERVER_VERSION}" \
description="A blazing fast and asynchronous web server for static files-serving." \
description="A cross-platform, blazing fast and asynchronous web server for static files-serving." \
maintainer="Jose Quintana <joseluisq.net>"
RUN apk --no-cache add ca-certificates tzdata
@@ -45,8 +45,8 @@ CMD ["static-web-server"]
# Metadata
LABEL org.opencontainers.image.vendor="Jose Quintana" \
org.opencontainers.image.url="https://github.com/joseluisq/static-web-server" \
org.opencontainers.image.url="https://github.com/static-web-server/static-web-server" \
org.opencontainers.image.title="Static Web Server" \
org.opencontainers.image.description="A blazing fast and asynchronous web server for static files-serving." \
org.opencontainers.image.description="A cross-platform, blazing fast and asynchronous web server for static files-serving." \
org.opencontainers.image.version="${SERVER_VERSION}" \
org.opencontainers.image.documentation="https://github.com/joseluisq/static-web-server"
org.opencontainers.image.documentation="https://github.com/static-web-server/static-web-server"

View File

@@ -3,7 +3,7 @@ FROM alpine:3.16
ENV SERVER_VERSION=devel
LABEL version="${SERVER_VERSION}" \
description="A blazing fast and asynchronous web server for static files-serving." \
description="A cross-platform, blazing fast and asynchronous web server for static files-serving." \
maintainer="Jose Quintana <joseluisq.net>"
RUN apk --no-cache add ca-certificates tzdata
@@ -22,8 +22,8 @@ CMD ["static-web-server"]
# Metadata
LABEL org.opencontainers.image.vendor="Jose Quintana" \
org.opencontainers.image.url="https://github.com/joseluisq/static-web-server" \
org.opencontainers.image.url="https://github.com/static-web-server/static-web-server" \
org.opencontainers.image.title="Static Web Server" \
org.opencontainers.image.description="A blazing fast and asynchronous web server for static files-serving." \
org.opencontainers.image.description="A cross-platform, blazing fast and asynchronous web server for static files-serving." \
org.opencontainers.image.version="${SERVER_VERSION}" \
org.opencontainers.image.documentation="https://github.com/joseluisq/static-web-server"
org.opencontainers.image.documentation="https://github.com/static-web-server/static-web-server"

View File

@@ -3,7 +3,7 @@ FROM scratch
ENV SERVER_VERSION=devel
LABEL version="${SERVER_VERSION}" \
description="A blazing fast and asynchronous web server for static files-serving." \
description="A cross-platform, blazing fast and asynchronous web server for static files-serving." \
maintainer="Jose Quintana <joseluisq.net>"
COPY ./docker/devel/static-web-server /
@@ -18,8 +18,8 @@ ENTRYPOINT ["/static-web-server"]
# Metadata
LABEL org.opencontainers.image.vendor="Jose Quintana" \
org.opencontainers.image.url="https://github.com/joseluisq/static-web-server" \
org.opencontainers.image.url="https://github.com/static-web-server/static-web-server" \
org.opencontainers.image.title="Static Web Server" \
org.opencontainers.image.description="A blazing fast and asynchronous web server for static files-serving." \
org.opencontainers.image.description="A cross-platform, blazing fast and asynchronous web server for static files-serving." \
org.opencontainers.image.version="${SERVER_VERSION}" \
org.opencontainers.image.documentation="https://github.com/joseluisq/static-web-server"
org.opencontainers.image.documentation="https://github.com/static-web-server/static-web-server"

View File

@@ -10,8 +10,8 @@
<body>
<h1>Assets Page</h1>
<p>A blazing fast and asynchronous web server for static files-serving. ⚡</p>
<p><a href="https://github.com/joseluisq/static-web-server/" target="_blank">View on GitHub</a></p>
<p>A cross-platform, blazing fast and asynchronous web server for static files-serving. ⚡</p>
<p><a href="https://github.com/static-web-server/static-web-server/" target="_blank">View on GitHub</a></p>
<script src="/assets/main.js"></script>
</body>

View File

@@ -8,8 +8,8 @@
</head>
<body>
<h1>Static Web Server</h1>
<p>A blazing fast and asynchronous web server for static files-serving. ⚡</p>
<p><a href="https://github.com/joseluisq/static-web-server/" target="_blank">View on GitHub</a></p>
<p>A cross-platform, blazing fast and asynchronous web server for static files-serving. ⚡</p>
<p><a href="https://github.com/static-web-server/static-web-server/" target="_blank">View on GitHub</a></p>
<script src="/assets/main.js"></script>
</body>
</html>

View File

@@ -8,7 +8,7 @@ ARG SERVER_VERSION=0.0.0
ENV SERVER_VERSION=${SERVER_VERSION}
LABEL version="${SERVER_VERSION}" \
description="A blazing fast and asynchronous web server for static files-serving." \
description="A cross-platform, blazing fast and asynchronous web server for static files-serving." \
maintainer="Jose Quintana <joseluisq.net>"
COPY --from=build /usr/local/bin/static-web-server /
@@ -22,8 +22,8 @@ ENTRYPOINT ["/static-web-server"]
# Metadata
LABEL org.opencontainers.image.vendor="Jose Quintana" \
org.opencontainers.image.url="https://github.com/joseluisq/static-web-server" \
org.opencontainers.image.url="https://github.com/static-web-server/static-web-server" \
org.opencontainers.image.title="Static Web Server" \
org.opencontainers.image.description="A blazing fast and asynchronous web server for static files-serving." \
org.opencontainers.image.description="A cross-platform, blazing fast and asynchronous web server for static files-serving." \
org.opencontainers.image.version="${SERVER_VERSION}" \
org.opencontainers.image.documentation="https://github.com/joseluisq/static-web-server"
org.opencontainers.image.documentation="https://github.com/static-web-server/static-web-server"