summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-02-05 16:31:34 +0300
committerGitHub <[email protected]>2022-02-05 16:31:34 +0300
commitf231e7282cb1b75be6276991d1b9811f6f185458 (patch)
treeb634cae6016740244fb163b2eb631a00663e9bb9 /Dockerfile
parentb3a4beed318afbf8bac6baaf17c055037476e767 (diff)
Dockerfile: correct labels
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Dockerfile b/Dockerfile
index 261b2511..e724de8f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -31,15 +31,15 @@ FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3
ARG APP_VERSION="undefined"
ARG BUILD_TIME="undefined"
-LABEL \
- org.opencontainers.image.title="roadrunner" \
- org.opencontainers.image.description="High-performance PHP application server, load-balancer, process manager written in Go and powered with plugins" \
- org.opencontainers.image.url="https://github.com/roadrunner-server/roadrunner" \
- org.opencontainers.image.source="https://github.com/roadrunner-server/roadrunner" \
- org.opencontainers.image.vendor="SpiralScout" \
- org.opencontainers.image.version="$APP_VERSION" \
- org.opencontainers.image.created="$BUILD_TIME" \
- org.opencontainers.image.licenses="MIT"
+# https://github.com/opencontainers/image-spec/blob/main/annotations.md
+LABEL org.opencontainers.image.title="roadrunner"
+LABEL org.opencontainers.image.description="High-performance PHP application server, load-balancer, process manager written in Go and powered with plugins"
+LABEL org.opencontainers.image.url="https://github.com/roadrunner-server/roadrunner"
+LABEL org.opencontainers.image.source="https://github.com/roadrunner-server/roadrunner"
+LABEL org.opencontainers.image.vendor="SpiralScout"
+LABEL org.opencontainers.image.version="$APP_VERSION"
+LABEL org.opencontainers.image.created="$BUILD_TIME"
+LABEL org.opencontainers.image.licenses="MIT"
# copy required files from builder image
COPY --from=builder /src/rr /usr/bin/rr