diff --git a/alpine-3.15.docker.m4 b/alpine-3.15.docker.m4 index 2666216..de85f2c 100644 --- a/alpine-3.15.docker.m4 +++ b/alpine-3.15.docker.m4 @@ -1,7 +1,7 @@ # Alpine 3.15 Dockerfile FROM alpine:3.15 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" RUN apk update && \ apk upgrade && \ diff --git a/alpine-3.19.docker.m4 b/alpine-3.19.docker.m4 index cc80010..bac8580 100644 --- a/alpine-3.19.docker.m4 +++ b/alpine-3.19.docker.m4 @@ -1,7 +1,7 @@ # Alpine 3.19 Dockerfile FROM alpine:3.19 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" RUN apk update && \ apk upgrade && \ diff --git a/fedora-32.docker.m4 b/fedora-32.docker.m4 index 359824f..806519d 100644 --- a/fedora-32.docker.m4 +++ b/fedora-32.docker.m4 @@ -1,6 +1,6 @@ FROM fedora:32 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" # can return 100 if packages need update RUN dnf check-update; \ diff --git a/fedora-32.ppc64le.docker.m4 b/fedora-32.ppc64le.docker.m4 index 8dc7259..ec08fbd 100644 --- a/fedora-32.ppc64le.docker.m4 +++ b/fedora-32.ppc64le.docker.m4 @@ -1,6 +1,6 @@ FROM ppc64le/fedora:32 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" # can return 100 if packages need update RUN dnf check-update; \ diff --git a/fedora-34-libressl.docker.m4 b/fedora-34-libressl.docker.m4 index d7b3f9b..759c74f 100644 --- a/fedora-34-libressl.docker.m4 +++ b/fedora-34-libressl.docker.m4 @@ -1,6 +1,6 @@ FROM fedora:34 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" # can return 100 if packages need update RUN dnf check-update; \ diff --git a/fedora-34.docker.m4 b/fedora-34.docker.m4 index ce814b8..e104289 100644 --- a/fedora-34.docker.m4 +++ b/fedora-34.docker.m4 @@ -1,6 +1,6 @@ FROM fedora:34 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" # can return 100 if packages need update RUN dnf check-update; \ diff --git a/fedora-41.docker.m4 b/fedora-41.docker.m4 index 3d165f1..4c9dc82 100644 --- a/fedora-41.docker.m4 +++ b/fedora-41.docker.m4 @@ -1,6 +1,6 @@ FROM fedora:41 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" # can return 100 if packages need update RUN dnf check-update; \ diff --git a/opensuse-leap-15.2.docker.m4 b/opensuse-leap-15.2.docker.m4 index 7af5d58..5c78b74 100644 --- a/opensuse-leap-15.2.docker.m4 +++ b/opensuse-leap-15.2.docker.m4 @@ -1,6 +1,6 @@ FROM opensuse/leap:15.2 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" RUN zypper ref RUN zypper -n in \ diff --git a/opensuse-leap.docker.m4 b/opensuse-leap.docker.m4 index 419383f..917df24 100644 --- a/opensuse-leap.docker.m4 +++ b/opensuse-leap.docker.m4 @@ -1,6 +1,6 @@ FROM opensuse/leap -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" RUN zypper ref RUN zypper -n in \ diff --git a/ubuntu-18.04.docker.m4 b/ubuntu-18.04.docker.m4 index d11fabe..07bca06 100644 --- a/ubuntu-18.04.docker.m4 +++ b/ubuntu-18.04.docker.m4 @@ -2,7 +2,7 @@ # FROM ubuntu:18.04 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ diff --git a/ubuntu-20.04.arm32v7.docker.m4 b/ubuntu-20.04.arm32v7.docker.m4 index d2e0fdd..850f1cd 100644 --- a/ubuntu-20.04.arm32v7.docker.m4 +++ b/ubuntu-20.04.arm32v7.docker.m4 @@ -1,6 +1,6 @@ FROM arm32v7/ubuntu:20.04 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" include(`ubuntu_20.04_base_deps.m4') diff --git a/ubuntu-20.04.arm64v8.docker.m4 b/ubuntu-20.04.arm64v8.docker.m4 index 85202dd..f10276d 100644 --- a/ubuntu-20.04.arm64v8.docker.m4 +++ b/ubuntu-20.04.arm64v8.docker.m4 @@ -1,6 +1,6 @@ FROM arm64v8/ubuntu:20.04 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" include(`ubuntu_20.04_base_deps.m4') include(`pip3.m4') diff --git a/ubuntu-20.04.docker.m4 b/ubuntu-20.04.docker.m4 index 7d74a6c..793869a 100644 --- a/ubuntu-20.04.docker.m4 +++ b/ubuntu-20.04.docker.m4 @@ -1,7 +1,7 @@ # Ubuntu 20.04 Dockerfile FROM ubuntu:20.04 -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" include(`ubuntu_20.04_base_deps.m4') diff --git a/ubuntu-22.04-mbedtls-3.1.docker.m4 b/ubuntu-22.04-mbedtls-3.1.docker.m4 index 447dab4..12c012b 100644 --- a/ubuntu-22.04-mbedtls-3.1.docker.m4 +++ b/ubuntu-22.04-mbedtls-3.1.docker.m4 @@ -1,6 +1,6 @@ FROM ubuntu:jammy -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ diff --git a/ubuntu-22.04-mbedtls-3.6.docker.m4 b/ubuntu-22.04-mbedtls-3.6.docker.m4 index 1d83b2f..2712493 100644 --- a/ubuntu-22.04-mbedtls-3.6.docker.m4 +++ b/ubuntu-22.04-mbedtls-3.6.docker.m4 @@ -1,6 +1,6 @@ FROM ubuntu:jammy -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ diff --git a/ubuntu-22.04.docker.m4 b/ubuntu-22.04.docker.m4 index 8bd115f..3e4d75a 100644 --- a/ubuntu-22.04.docker.m4 +++ b/ubuntu-22.04.docker.m4 @@ -1,6 +1,6 @@ FROM ubuntu:jammy -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ diff --git a/ubuntu-24.04.docker.m4 b/ubuntu-24.04.docker.m4 index 15684b4..8bcc466 100644 --- a/ubuntu-24.04.docker.m4 +++ b/ubuntu-24.04.docker.m4 @@ -1,6 +1,6 @@ FROM ubuntu:noble -LABEL org.opencontainers.image.source https://github.com/tpm2-software/tpm2-software-container +LABEL org.opencontainers.image.source="https://github.com/tpm2-software/tpm2-software-container" ENV DEBIAN_FRONTEND=noninteractive ENV PIP_REQUIRE_VIRTUALENV=0