From 3e9ff79e4cd42912c0b9184ee0e4771718621a4a Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Mon, 28 Sep 2020 01:13:54 -0500 Subject: [PATCH] refactor(docker): fix up labels --- Dockerfile | 6 +++--- Dockerfile.web | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index fea7ea2d..a49dc12d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,11 +27,11 @@ RUN npm prune --production FROM node:14.11.0-alpine3.11 as production-stage LABEL org.opencontainers.image.title="SyncLounge" LABEL org.opencontainers.image.description="Enjoy Plex with your friends. In Sync. Together." -LABEL org.opencontainers.image.url="https://synclounge.tv/" -LABEL org.opencontainers.image.source="https://github.com/ttshivers/syncloungesocket" +LABEL org.opencontainers.image.url="https://synclounge.tv" +LABEL org.opencontainers.image.source="https://github.com/ttshivers/synclounge" LABEL org.opencontainers.image.vendor="SyncLounge" LABEL org.opencontainers.image.licenses="MIT" -LABEL org.opencontainers.image.documentation="https://docs.synclounge.tv/" +LABEL org.opencontainers.image.documentation="https://docs.synclounge.tv" RUN mkdir /app && chown -R node:node /app WORKDIR /app diff --git a/Dockerfile.web b/Dockerfile.web index ba3d064a..4eb1bd9d 100644 --- a/Dockerfile.web +++ b/Dockerfile.web @@ -18,11 +18,11 @@ RUN npm run build FROM nginx:1.19.2-alpine as production-stage LABEL org.opencontainers.image.title="SyncLounge Web" LABEL org.opencontainers.image.description="Enjoy Plex with your friends. In Sync. Together." -LABEL org.opencontainers.image.url="https://synclounge.tv/" -LABEL org.opencontainers.image.source="https://github.com/ttshivers/syncloungesocket" +LABEL org.opencontainers.image.url="https://synclounge.tv" +LABEL org.opencontainers.image.source="https://github.com/ttshivers/synclounge" LABEL org.opencontainers.image.vendor="SyncLounge" LABEL org.opencontainers.image.licenses="MIT" -LABEL org.opencontainers.image.documentation="https://docs.synclounge.tv/" +LABEL org.opencontainers.image.documentation="https://docs.synclounge.tv" COPY --chown=nginx:nginx --from=build-stage /app/dist /usr/share/nginx/html