diff --git a/CHANGELOG.md b/CHANGELOG.md index fe3bc848..856c94bc 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +### Fixed +- Fix wrong license identifier in Dockerfile, closes #302. ## 0.1.6 - 2024-04-22 ### Added diff --git a/docker/Dockerfile b/docker/Dockerfile index f5636c4d..bd1f05bc 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -275,7 +275,7 @@ FROM php_embed as php # see also https://github.com/opencontainers/image-spec/blob/main/annotations.md LABEL org.opencontainers.image.vendor="Ember Nexus" \ org.opencontainers.image.authors="Sören Klein / Syndesi " \ - org.opencontainers.image.licenses="GPL-3.0-only" \ + org.opencontainers.image.licenses="AGPL-3.0-only" \ org.opencontainers.image.source="https://github.com/ember-nexus/api" \ org.opencontainers.image.title="API" \ org.opencontainers.image.description="Knowledge Graph API." @@ -340,7 +340,7 @@ FROM scratch as production # see also https://github.com/opencontainers/image-spec/blob/main/annotations.md LABEL org.opencontainers.image.vendor="Ember Nexus" \ org.opencontainers.image.authors="Sören Klein / Syndesi " \ - org.opencontainers.image.licenses="GPL-3.0-only" \ + org.opencontainers.image.licenses="AGPL-3.0-only" \ org.opencontainers.image.source="https://github.com/ember-nexus/api" \ org.opencontainers.image.title="API" \ org.opencontainers.image.description="Knowledge Graph API."