Skip to content

Commit 675c26e

Browse files
committed
Merge branch 'release-5.2.1-1.docker'
2 parents 899e184 + 27ba3c8 commit 675c26e

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### citus-docker v5.2.1-1.docker (September 16, 2016) ###
2+
3+
* Preserves ca-certificates package in images to avoid breaking apt-get
4+
5+
* Ensures removal of community GPG key in nightly image build
6+
17
### citus-docker v5.2.1 (September 6, 2016) ###
28

39
* Bump Citus version to 5.2.1; fixes a subquery bug

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update \
1010
curl \
1111
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
1212
&& apt-get install -y postgresql-$PG_MAJOR-citus=$CITUS_VERSION \
13-
&& apt-get purge -y --auto-remove ca-certificates curl \
13+
&& apt-get purge -y --auto-remove curl \
1414
&& rm -rf /var/lib/apt/lists/*
1515

1616
# add citus to default PostgreSQL config

nightly/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ FROM citusdata/citus:latest
22
MAINTAINER Citus Data https://citusdata.com
33

44
# switch to Citus nightly
5-
RUN rm -rf /etc/apt/sources.list.d/citusdata_community.list \
5+
RUN apt-key del 1530DF18 \
6+
&& rm -rf /etc/apt/sources.list.d/citusdata_community.list \
67
&& apt-get update \
78
&& apt-get install -y --no-install-recommends \
89
ca-certificates \
910
curl \
1011
&& curl -s https://install.citusdata.com/community-nightlies/deb.sh | bash \
1112
&& apt-get install --only-upgrade -y postgresql-$PG_MAJOR-citus \
12-
&& apt-get purge -y --auto-remove ca-certificates curl \
13+
&& apt-get purge -y --auto-remove curl \
1314
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)