From 53c4d9ae0c9e8e254c405da46c7bffcd64c4bba8 Mon Sep 17 00:00:00 2001 From: David Thorpe Date: Mon, 20 Jan 2025 08:50:55 +0100 Subject: [PATCH] Removed SOURCE --- Dockerfile | 2 -- Makefile | 2 -- 2 files changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0ea4289..ea94513 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,7 @@ ARG VERSION=17-bookworm # Use the base image FROM postgres:${VERSION} ARG VERSION -ARG SOURCE LABEL org.opencontainers.image.description="PostgreSQL image with primary/replica support" \ - org.opencontainers.image.source="$SOURCE" \ org.opencontainers.image.version="$VERSION" # Install packages postgis and pgvector diff --git a/Makefile b/Makefile index 0f9be30..f44c794 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,6 @@ OS ?= $(shell uname | tr A-Z a-z) VERSION ?= 17-bookworm # Docker repository -DOCKER_SOURCE ?= https://github.com/mutablelogic/docker-postgres DOCKER_REPO ?= ghcr.io/mutablelogic/docker-postgres BUILD_TAG = ${DOCKER_REPO}-${OS}-${ARCH}:${VERSION} @@ -20,7 +19,6 @@ docker: docker-dep --build-arg ARCH=${ARCH} \ --build-arg OS=${OS} \ --build-arg VERSION=${VERSION} \ - --build-arg SOURCE=${DOCKER_SOURCE} \ -f Dockerfile . # Push the docker image