Skip to content

Commit 8bf0a08

Browse files
authored
Merge pull request #361 from citusdata/release-13.2.0
Bump docker version to 13.2.0
2 parents 5bd855b + 7794206 commit 8bf0a08

File tree

6 files changed

+33
-39
lines changed

6 files changed

+33
-39
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### citus-docker v13.2.0.docker (Sep 03,2025) ###
2+
3+
* Bump Citus version to 13.2.0
4+
15
### citus-docker v13.1.0.docker (June 02,2025) ###
26

37
* Bump Citus version to 13.1.0

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/latest/latest.tmpl.dockerfile.
3-
FROM postgres:17.5
4-
ARG VERSION=13.1.0
3+
FROM postgres:17.6-bookworm
4+
ARG VERSION=13.2.0
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-13.1=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-13.2=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.18.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.7.0.citus-1 \
2525
&& apt-get purge -y --auto-remove curl \

alpine/Dockerfile

Lines changed: 17 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/alpine/alpine.tmpl.dockerfile.
3-
FROM postgres:17.5-alpine
4-
ARG VERSION=13.1.0
3+
FROM postgres:17.6-alpine
4+
ARG VERSION=13.2.0
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -12,31 +12,21 @@ LABEL maintainer="Citus Data https://citusdata.com" \
1212
org.label-schema.schema-version="1.0"
1313

1414
# Build citus and delete all used libraries. Warning: Libraries installed in this section will be deleted after build completion
15-
RUN apk add --no-cache \
16-
--virtual builddeps \
17-
build-base \
18-
krb5-dev \
19-
curl \
20-
curl-dev \
21-
openssl-dev \
22-
ca-certificates \
23-
llvm \
24-
llvm19-dev \
25-
clang19 \
26-
lz4-dev \
27-
zstd-dev \
28-
libxslt-dev \
29-
libxml2-dev \
30-
icu-dev && \
31-
apk add --no-cache libcurl && \
32-
curl -sfLO "https://github.com/citusdata/citus/archive/v${VERSION}.tar.gz" && \
33-
tar xzf "v${VERSION}.tar.gz" && \
34-
cd "citus-${VERSION}" && \
35-
./configure --with-security-flags && \
36-
make install && \
37-
cd .. && \
38-
rm -rf "citus-${VERSION}" "v${VERSION}.tar.gz" && \
39-
apk del builddeps
15+
RUN apk add --no-cache --virtual builddeps \
16+
build-base krb5-dev curl curl-dev openssl-dev ca-certificates \
17+
llvm19-dev clang19 llvm19-libs \
18+
lz4-dev zstd-dev libxslt-dev libxml2-dev icu-dev \
19+
&& apk add --no-cache libcurl \
20+
&& curl -sfLO "https://github.com/citusdata/citus/archive/v${VERSION}.tar.gz" \
21+
&& tar xzf "v${VERSION}.tar.gz" \
22+
&& cd "citus-${VERSION}" \
23+
&& ./configure --with-security-flags \
24+
&& make install \
25+
&& cd .. \
26+
&& rm -rf "citus-${VERSION}" "v${VERSION}.tar.gz" \
27+
&& apk del builddeps
28+
29+
4030

4131
#--------End of Citus Build
4232

pkgvars

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
postgres_17_version=17.2
2-
postgres_16_version=16.6
3-
postgres_15_version=15.10
1+
postgres_17_version=17.6
2+
postgres_16_version=16.10
3+
postgres_15_version=15.14
44
postgres_14_version=14.15
55

postgres-15/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/postgres-15/postgres-15.tmpl.dockerfile.
3-
FROM postgres:15.13
4-
ARG VERSION=13.1.0
3+
FROM postgres:15.14-bookworm
4+
ARG VERSION=13.2.0
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-13.1=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-13.2=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.18.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.7.0.citus-1 \
2525
&& apt-get purge -y --auto-remove curl \

postgres-16/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/postgres-16/postgres-16.tmpl.dockerfile.
3-
FROM postgres:16.9
4-
ARG VERSION=13.1.0
3+
FROM postgres:16.10-bookworm
4+
ARG VERSION=13.2.0
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-13.1=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-13.2=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.18.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.7.0.citus-1 \
2525
&& apt-get purge -y --auto-remove curl \

0 commit comments

Comments
 (0)