Skip to content

Commit

Permalink
Merge branch 'release-5.2.1-1.docker'
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmp85 committed Sep 16, 2016
2 parents 899e184 + 27ba3c8 commit 675c26e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### citus-docker v5.2.1-1.docker (September 16, 2016) ###

* Preserves ca-certificates package in images to avoid breaking apt-get

* Ensures removal of community GPG key in nightly image build

### citus-docker v5.2.1 (September 6, 2016) ###

* Bump Citus version to 5.2.1; fixes a subquery bug
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update \
curl \
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
&& apt-get install -y postgresql-$PG_MAJOR-citus=$CITUS_VERSION \
&& apt-get purge -y --auto-remove ca-certificates curl \
&& apt-get purge -y --auto-remove curl \
&& rm -rf /var/lib/apt/lists/*

# add citus to default PostgreSQL config
Expand Down
5 changes: 3 additions & 2 deletions nightly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ FROM citusdata/citus:latest
MAINTAINER Citus Data https://citusdata.com

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

0 comments on commit 675c26e

Please sign in to comment.