From b1a4d0ad0937e1276729a43039fe0a479f9d33cf Mon Sep 17 00:00:00 2001 From: Jannis R Date: Tue, 19 Oct 2021 11:20:19 +0200 Subject: [PATCH] =?UTF-8?q?Dockerfile:=20fix=20image=20metadata=20?= =?UTF-8?q?=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef51c9b..23f8677 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,4 @@ FROM node:alpine as builder -LABEL org.opencontainers.image.title="db-rest" -LABEL org.opencontainers.image.description="A clean REST API wrapping around the Deutsche Bahn API." -LABEL org.opencontainers.image.authors="Jannis R " -LABEL org.opencontainers.image.documentation="https://github.com/derhuerst/db-rest/tree/5" -LABEL org.opencontainers.image.source="https://github.com/derhuerst/db-rest" -LABEL org.opencontainers.image.revision="5" -LABEL org.opencontainers.image.licenses="ISC" WORKDIR /app # install dependencies @@ -20,6 +13,13 @@ RUN npm run build # --- FROM node:alpine +LABEL org.opencontainers.image.title="db-rest" +LABEL org.opencontainers.image.description="A clean REST API wrapping around the Deutsche Bahn API." +LABEL org.opencontainers.image.authors="Jannis R " +LABEL org.opencontainers.image.documentation="https://github.com/derhuerst/db-rest/tree/5" +LABEL org.opencontainers.image.source="https://github.com/derhuerst/db-rest" +LABEL org.opencontainers.image.revision="5" +LABEL org.opencontainers.image.licenses="ISC" WORKDIR /app # install dependencies