fixed escaped labels

This commit is contained in:
Wyatt J. Miller 2024-03-14 20:51:24 -04:00
parent a9392ea302
commit e8b59e9c1c
3 changed files with 10 additions and 7 deletions

View File

@ -14,6 +14,7 @@ LABEL com.github.containers.toolbox="true" \
usage="Java currrent custom developer images" \ usage="Java currrent custom developer images" \
summary="Wyatt's custom Java 21 image" \ summary="Wyatt's custom Java 21 image" \
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \ maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
vendor="Miller Web Solutions"
# Install .NET and related tools # Install .NET and related tools
RUN dnf install java-21-openjdk java-21-openjdk-devel -y -q && dnf clean all RUN dnf install java-21-openjdk java-21-openjdk-devel -y -q && dnf clean all

View File

@ -1,8 +1,8 @@
# .NET development container image # Java 11 development container image
# Written by Wyatt J. Miller, 2023 # Written by Wyatt J. Miller, 2024
# This image is opinionated, but you're welcome to customize as much as you like # This image is opinionated, but you're welcome to customize as much as you like
# Start with the Fedora 38 image # Start with the Fedora 39 custom image
FROM scm.wyattjmiller.com/wymiller/base_container:latest FROM scm.wyattjmiller.com/wymiller/base_container:latest
# Label it right, ya know? # Label it right, ya know?
@ -14,6 +14,7 @@ LABEL com.github.containers.toolbox="true" \
usage="Java currrent custom developer images" \ usage="Java currrent custom developer images" \
summary="Wyatt's custom Java 11 image" \ summary="Wyatt's custom Java 11 image" \
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \ maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
vendor="Miller Web Solutions"
# Install .NET and related tools # Install Java 11
RUN dnf install java-11-openjdk java-11-openjdk-devel -y -q && dnf clean all RUN dnf install java-11-openjdk java-11-openjdk-devel -y -q && dnf clean all

View File

@ -1,5 +1,5 @@
# Java 11 development container image # Java 17 development container image
# Written by Wyatt J. Miller, 2023 # Written by Wyatt J. Miller, 2024
# This image is opinionated, but you're welcome to customize as much as you like # This image is opinionated, but you're welcome to customize as much as you like
# Start with the Fedora 39 custom image # Start with the Fedora 39 custom image
@ -14,6 +14,7 @@ LABEL com.github.containers.toolbox="true" \
usage="Java currrent custom developer images" \ usage="Java currrent custom developer images" \
summary="Wyatt's custom Java 17 image" \ summary="Wyatt's custom Java 17 image" \
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \ maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
vendor="Miller Web Solutions"
# Install .NET and related tools # Install Java 17
RUN dnf install java-17-openjdk java-17-openjdk-devel -y -q && dnf clean all RUN dnf install java-17-openjdk java-17-openjdk-devel -y -q && dnf clean all