refactor(docker): fix up labels

This commit is contained in:
Travis Shivers 2020-09-28 01:13:54 -05:00
parent 13617b4459
commit 3e9ff79e4c
No known key found for this signature in database
GPG Key ID: EE4CC2891B8FCD33
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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