File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -2,12 +2,13 @@ FROM citusdata/citus:latest
22MAINTAINER 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/*
You can’t perform that action at this time.
0 commit comments