-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐳 Unify Dockerfile labels to conform to the Open Container Initiative…
… (OCI) standard (#580)
- Loading branch information
Showing
1 changed file
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,16 @@ FROM ubuntu:24.04 | |
# Optional argument to run the "make" command in parallel with the specified NUMBER_OF_JOBS | ||
ARG NUMBER_OF_JOBS=4 | ||
|
||
# Metadata labels | ||
LABEL maintainer="Marcel Walter <[email protected]>" | ||
LABEL organization="Chair for Design Automation, Technical University of Munich" | ||
LABEL description="Docker image for fiction, an open-source design automation framework for Field-coupled Nanotechnologies." | ||
LABEL license="MIT" | ||
LABEL url="https://www.cda.cit.tum.de/research/nanotech/" | ||
LABEL vcs-url="https://github.com/cda-tum/fiction" | ||
# Unified metadata labels for DockerHub and the Open Container Initiative (OCI) | ||
LABEL maintainer="Marcel Walter <[email protected]>" \ | ||
org.opencontainers.image.title="fiction" \ | ||
org.opencontainers.image.description="Docker image for fiction, an open-source design automation framework for Field-coupled Nanotechnologies." \ | ||
org.opencontainers.image.authors="Marcel Walter <[email protected]>, Jan Drewniok <[email protected]>, Simon Hofmann <[email protected]>, Benjamin Hien <[email protected]>, Willem Lambooy <[email protected]>" \ | ||
org.opencontainers.image.url="https://www.cda.cit.tum.de/research/nanotech/" \ | ||
org.opencontainers.image.source="https://github.com/cda-tum/fiction" \ | ||
org.opencontainers.image.documentation="https://fiction.readthedocs.io/" \ | ||
org.opencontainers.image.licenses="MIT" \ | ||
org.opencontainers.image.vendor="Chair for Design Automation, Technical University of Munich (TUM)" | ||
|
||
|
||
# Configure apt and install required packages | ||
|