-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves Actions warning on label formatting (#131)
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM python:3.10-slim-bullseye | ||
|
||
LABEL maintainer "Martijn Pepping <[email protected]>" | ||
LABEL org.opencontainers.image.authors "Martijn Pepping <[email protected]>" | ||
LABEL org.opencontainers.image.description "Solarman MQTT published API data of supported PV systems to MQTT." | ||
LABEL org.opencontainers.image.source "https://github.com/mpepping/solarman-mqtt" | ||
LABEL org.opencontainers.image.title "Solarman MQTT" | ||
LABEL org.opencontainers.image.url "https://github.com/mpepping/solarman-mqtt/pkgs/container/solarman-mqtt" | ||
LABEL maintainer="Martijn Pepping <[email protected]>" | ||
LABEL org.opencontainers.image.authors="Martijn Pepping <[email protected]>" | ||
LABEL org.opencontainers.image.description="Solarman MQTT published API data of supported PV systems to MQTT." | ||
LABEL org.opencontainers.image.source="https://github.com/mpepping/solarman-mqtt" | ||
LABEL org.opencontainers.image.title="Solarman MQTT" | ||
LABEL org.opencontainers.image.url="https://github.com/mpepping/solarman-mqtt/pkgs/container/solarman-mqtt" | ||
|
||
ADD . /opt/app-root/src/ | ||
WORKDIR /opt/app-root/src | ||
|