Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
ARG VCHORD_VERSION=0.4.3

# main container
FROM ghcr.io/cloudnative-pg/postgresql:16.8-14@sha256:ed9bd4a26b152cf35f2c64e15f48126e3477ad222cfb04794562bdc999b8f0be
FROM ghcr.io/cloudnative-pg/postgresql:16.9-14@sha256:a087c3263e5c6c576390e223af2bd17dab09fc2f45375ee34cfb700872245d36

ARG VCHORD_VERSION

LABEL org.opencontainers.image.authors="Daniel Muehlbachler-Pietrzykowski <daniel.muehlbachler@niftyside.com>"
LABEL org.opencontainers.image.vendor="Daniel Muehlbachler-Pietrzykowski"
LABEL org.opencontainers.image.source="https://github.com/muhlba91/postgresql-pgvecto-container"
LABEL org.opencontainers.image.created="${CI_COMMIT_TIMESTAMP}"

Check warning on line 15 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$CI_COMMIT_TIMESTAMP' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.title="cloudnativepg-postgresql-vectorchord"
LABEL org.opencontainers.image.description="A container integrating VectorChord into CloudNativePG PostgreSQL"
LABEL org.opencontainers.image.revision="${CI_COMMIT_SHA}"

Check warning on line 18 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$CI_COMMIT_SHA' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.version="${CI_COMMIT_TAG}"

Check warning on line 19 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$CI_COMMIT_TAG' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.upstream="${CI_UPSTREAM_VERSION}"

Check warning on line 20 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$CI_UPSTREAM_VERSION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# use root to install binaries
USER root
Expand Down