File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ RUN apk add --no-cache --virtual .citus-deps \
105105 jq
106106
107107# Install Citus
108- ARG CITUS_VERSION= "11.2.0"
108+ ARG CITUS_VERSION
109109RUN set -ex \
110110 && apk add --no-cache --virtual .citus-build-deps \
111111 gcc \
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ NAME=postgres
33# Set ORG to timescale in the caller
44ORG =samagragovernance
55PG_VER =pg15
6+ CITUS_VERSION ="11.2.0"
67PG_VER_NUMBER =$(shell echo $(PG_VER ) | cut -c3-)
78TS_VERSION =main
89PREV_TS_VERSION =$(shell wget --quiet -O - https://raw.githubusercontent.com/timescale/timescaledb/${TS_VERSION}/version.config | grep update_from_version | sed -e 's!update_from_version = !!')
@@ -54,7 +55,7 @@ default: image
5455 touch .build_$(TS_VERSION ) _$(PG_VER ) _oss
5556
5657.build_$(TS_VERSION ) _$(PG_VER ) : Dockerfile
57- docker build --build-arg PG_VERSION=$(PG_VER_NUMBER ) --build-arg TS_VERSION=$(TS_VERSION ) --build-arg PREV_IMAGE=$(PREV_IMAGE ) $(TAG ) .
58+ docker build --build-arg PG_VERSION=$(PG_VER_NUMBER ) --build-arg TS_VERSION=$(TS_VERSION ) --build-arg PREV_IMAGE=$(PREV_IMAGE ) --build-arg CITUS_VERSION= $( CITUS_VERSION ) $(TAG ) .
5859 touch .build_$(TS_VERSION ) _$(PG_VER )
5960
6061image : .build_$(TS_VERSION ) _$(PG_VER )
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ RUN set +o pipefail \
5151ARG PG_VERSION
5252FROM bitnami/postgresql:${PG_VERSION}
5353ARG PG_VERSION
54- ARG CITUS_VERSION= "11.2.0"
54+ ARG CITUS_VERSION
5555
5656LABEL maintainer="Timescale https://www.timescale.com"
5757
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ NAME=timescaledb
22# Default is to timescaledev to avoid unexpected push to the main repo
33# Set ORG to timescale in the caller
44ORG =timescaledev
5- PG_VER =pg12
5+ PG_VER =pg15
6+ CITUS_VERSION ="11.2.0"
67PG_VER_NUMBER =$(shell echo $(PG_VER ) | cut -c3-)
78
89TS_VERSION =main
@@ -21,7 +22,7 @@ default: image
2122.build_$(TS_VERSION ) _$(PG_VER ) : Dockerfile
2223 test -n " $( TS_VERSION) " # TS_VERSION
2324 test -n " $( PREV_TS_VERSION) " # PREV_TS_VERSION
24- docker build -f ./Dockerfile --build-arg PG_VERSION=$(PG_VER_NUMBER ) --build-arg TS_VERSION=$(TS_VERSION ) --build-arg PREV_IMAGE=$(PREV_IMAGE ) $(TAG ) ..
25+ docker build -f ./Dockerfile --build-arg PG_VERSION=$(PG_VER_NUMBER ) --build-arg TS_VERSION=$(TS_VERSION ) --build-arg PREV_IMAGE=$(PREV_IMAGE ) --build-arg CITUS_VERSION= $( CITUS_VERSION ) $(TAG ) ..
2526 touch .build_$(TS_VERSION ) _$(PG_VER ) -bitnami
2627
2728image : .build_$(TS_VERSION ) _$(PG_VER )
You can’t perform that action at this time.
0 commit comments