From 4f2d34ecf88a8e6fcda6f804b8d5e645ac3d734e Mon Sep 17 00:00:00 2001 From: Nigel Kukard <nkukard@lbsd.net> Date: Tue, 7 Jan 2025 19:53:07 +0000 Subject: [PATCH 1/2] chore: updated copyright to 2025 --- Dockerfile | 2 +- get_release_version | 2 +- .../pre-init-tests.d/44-postgresql-timescaledb.sh | 2 +- .../tests.d/44-postgresql-timescaledb.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3cc543..fde87c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2023, AllWorldIT. +# Copyright (c) 2022-2025, AllWorldIT. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/get_release_version b/get_release_version index 6c00d88..d5ac8d4 100755 --- a/get_release_version +++ b/get_release_version @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2022-2023, AllWorldIT. +# Copyright (c) 2022-2025, AllWorldIT. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/usr/local/share/flexible-docker-containers/pre-init-tests.d/44-postgresql-timescaledb.sh b/usr/local/share/flexible-docker-containers/pre-init-tests.d/44-postgresql-timescaledb.sh index 521ccb6..42f2eba 100644 --- a/usr/local/share/flexible-docker-containers/pre-init-tests.d/44-postgresql-timescaledb.sh +++ b/usr/local/share/flexible-docker-containers/pre-init-tests.d/44-postgresql-timescaledb.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2022-2023, AllWorldIT. +# Copyright (c) 2022-2025, AllWorldIT. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/usr/local/share/flexible-docker-containers/tests.d/44-postgresql-timescaledb.sh b/usr/local/share/flexible-docker-containers/tests.d/44-postgresql-timescaledb.sh index 5b29300..48f74e6 100644 --- a/usr/local/share/flexible-docker-containers/tests.d/44-postgresql-timescaledb.sh +++ b/usr/local/share/flexible-docker-containers/tests.d/44-postgresql-timescaledb.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2022-2023, AllWorldIT. +# Copyright (c) 2022-2025, AllWorldIT. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to -- GitLab From 75346c41f27ff24c41380921f73215303b88288a Mon Sep 17 00:00:00 2001 From: Nigel Kukard <nkukard@lbsd.net> Date: Tue, 7 Jan 2025 19:56:23 +0000 Subject: [PATCH 2/2] fix: fixed LABEL syntax --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fde87c6..1a170e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -119,9 +119,9 @@ COPY --from=tsbuilder-2.17.2 /build/timescaledb-root / ARG VERSION_INFO= -LABEL org.opencontainers.image.authors "Nigel Kukard <nkukard@conarx.tech>" -LABEL org.opencontainers.image.version "edge" -LABEL org.opencontainers.image.base.name "registry.conarx.tech/containers/postgresql/edge" +LABEL org.opencontainers.image.authors = "Nigel Kukard <nkukard@conarx.tech>" +LABEL org.opencontainers.image.version = "edge" +LABEL org.opencontainers.image.base.name = "registry.conarx.tech/containers/postgresql/edge" RUN set -eux; \ -- GitLab