This commit is contained in:
SebClem 2024-08-13 16:29:19 +02:00
parent e8778fb778
commit cb54fb590e
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50
2 changed files with 3 additions and 27 deletions

View File

@ -146,7 +146,9 @@ jobs:
with: with:
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: |
${{ steps.meta.outputs.labels }}
io.hass.version=${{steps.meta.outputs.version}}
build-args: | build-args: |
BUILD_FROM=${{env.BUILD_FROM}} BUILD_FROM=${{env.BUILD_FROM}}
file: ./${{env.TARGET}}/Dockerfile file: ./${{env.TARGET}}/Dockerfile

View File

@ -45,29 +45,3 @@ COPY backend/package.json backend/pnpm-lock.yaml ./
COPY --from=backend-builder /app/dist . COPY --from=backend-builder /app/dist .
COPY --from=backend-builder /app/node_modules ./node_modules COPY --from=backend-builder /app/node_modules ./node_modules
COPY --from=frontend-builder /app/dist ./public COPY --from=frontend-builder /app/dist ./public
# Build arguments
ARG BUILD_ARCH
ARG BUILD_DATE
ARG BUILD_REF
ARG BUILD_VERSION
ARG IMAGE_SOURCE
# Labels
LABEL \
io.hass.name="Nextcloud Backup" \
io.hass.description="Addon that backup your snapshot to a Nextcloud server" \
io.hass.arch="${BUILD_ARCH}" \
io.hass.type="addon" \
io.hass.version=${BUILD_VERSION} \
maintainer="Sebclem" \
org.label-schema.description="Addon that backup your snapshot to a Nextcloud server" \
org.label-schema.build-date=${BUILD_DATE} \
org.label-schema.name="Nextcloud Backup" \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://addons.community" \
org.label-schema.usage="https://github.com/Sebclem/hassio-nextcloud-backup/tree/master/README.md" \
org.label-schema.vcs-ref=${BUILD_REF} \
org.label-schema.vcs-url="https://github.com/Sebclem/hassio-nextcloud-backup" \
org.label-schema.vendor="Sebclem"\
org.opencontainers.image.source=${IMAGE_SOURCE}