From 39545659ce2a24e91c56afe955845fc852384a84 Mon Sep 17 00:00:00 2001 From: matijs Date: Tue, 30 Jul 2024 15:15:23 +0200 Subject: [PATCH] chore: use LABEL key="value" LABEL key value was deprecated --- npm/Dockerfile | 4 ++-- pnpm/Dockerfile | 4 ++-- yarn/Dockerfile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/npm/Dockerfile b/npm/Dockerfile index eaf6d40..07eda7e 100644 --- a/npm/Dockerfile +++ b/npm/Dockerfile @@ -1,7 +1,7 @@ FROM node:20.16.0-alpine3.20 -LABEL org.opencontainers.image.authors matijs -LABEL org.opencontainers.image.source https://github.com/matijs/dockerfiles/blob/main/npm/Dockerfile +LABEL org.opencontainers.image.authors="matijs " +LABEL org.opencontainers.image.source="https://github.com/matijs/dockerfiles/blob/main/npm/Dockerfile" RUN apk add --no-cache git RUN npm install --global npm@latest diff --git a/pnpm/Dockerfile b/pnpm/Dockerfile index 11832d0..f565ad9 100644 --- a/pnpm/Dockerfile +++ b/pnpm/Dockerfile @@ -1,7 +1,7 @@ FROM node:20.16.0-alpine3.20 -LABEL org.opencontainers.image.authors matijs -LABEL org.opencontainers.image.source https://github.com/matijs/dockerfiles/blob/main/pnpm/Dockerfile +LABEL org.opencontainers.image.authors="matijs " +LABEL org.opencontainers.image.source="https://github.com/matijs/dockerfiles/blob/main/pnpm/Dockerfile" RUN apk add --no-cache git RUN npm install --global npm@latest diff --git a/yarn/Dockerfile b/yarn/Dockerfile index 9d7902c..b5db803 100644 --- a/yarn/Dockerfile +++ b/yarn/Dockerfile @@ -1,7 +1,7 @@ FROM node:20.16.0-alpine3.20 -LABEL org.opencontainers.image.authors matijs -LABEL org.opencontainers.image.source https://github.com/matijs/dockerfiles/blob/main/yarn/Dockerfile +LABEL org.opencontainers.image.authors="matijs " +LABEL org.opencontainers.image.source="https://github.com/matijs/dockerfiles/blob/main/yarn/Dockerfile" RUN apk add --no-cache git RUN npm install --global npm@latest