From d05b7036d90d341cfa8482b21ebdb1451339e915 Mon Sep 17 00:00:00 2001 From: Michal Ciania Date: Sun, 19 Sep 2021 12:39:41 +0200 Subject: [PATCH] Use quotes in labels for consistency --- dockerfile | 14 +++++++------- dockerfile-alpine | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/dockerfile b/dockerfile index a7c22985d..bedc145e6 100644 --- a/dockerfile +++ b/dockerfile @@ -14,15 +14,15 @@ FROM node:14-buster-slim AS release ARG BUILD_DATE -LABEL org.opencontainers.image.authors='Louis Lam' \ - org.opencontainers.image.url='https://uptime.kuma.pet' \ - org.opencontainers.image.documentation='https://github.com/louislam/uptime-kuma/wiki' \ - org.opencontainers.image.source='https://github.com/louislam/uptime-kuma.git' \ - org.opencontainers.image.vendor='Louis Lam' \ - org.opencontainers.image.licenses='MIT License' \ +LABEL org.opencontainers.image.authors="Louis Lam" \ + org.opencontainers.image.url="https://uptime.kuma.pet" \ + org.opencontainers.image.documentation="https://github.com/louislam/uptime-kuma/wiki" \ + org.opencontainers.image.source="https://github.com/louislam/uptime-kuma.git" \ + org.opencontainers.image.vendor="Louis Lam" \ + org.opencontainers.image.licenses="MIT License" \ org.opencontainers.image.title="Uptime Kuma" \ org.opencontainers.image.description="Self-hosted uptime monitoring tool with notifications" \ - org.opencontainers.image.created=$BUILD_DATE + org.opencontainers.image.created="$BUILD_DATE" WORKDIR /app diff --git a/dockerfile-alpine b/dockerfile-alpine index de4601682..f16097cc8 100644 --- a/dockerfile-alpine +++ b/dockerfile-alpine @@ -13,15 +13,15 @@ FROM node:14-alpine3.12 AS release ARG BUILD_DATE -LABEL org.opencontainers.image.authors='Louis Lam' \ - org.opencontainers.image.url='https://uptime.kuma.pet' \ - org.opencontainers.image.documentation='https://github.com/louislam/uptime-kuma/wiki' \ - org.opencontainers.image.source='https://github.com/louislam/uptime-kuma.git' \ - org.opencontainers.image.vendor='Louis Lam' \ - org.opencontainers.image.licenses='MIT License' \ +LABEL org.opencontainers.image.authors="Louis Lam" \ + org.opencontainers.image.url="https://uptime.kuma.pet" \ + org.opencontainers.image.documentation="https://github.com/louislam/uptime-kuma/wiki" \ + org.opencontainers.image.source="https://github.com/louislam/uptime-kuma.git" \ + org.opencontainers.image.vendor="Louis Lam" \ + org.opencontainers.image.licenses="MIT License" \ org.opencontainers.image.title="Uptime Kuma" \ org.opencontainers.image.description="Self-hosted uptime monitoring tool with notifications" \ - org.opencontainers.image.created=$BUILD_DATE + org.opencontainers.image.created="$BUILD_DATE" WORKDIR /app