We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d67b17 commit 08fa911Copy full SHA for 08fa911
extended/Dockerfile
@@ -46,6 +46,11 @@ RUN curl -s https://install.citusdata.com/community/deb.sh | bash \
46
# add powa extension
47
RUN apt-get install postgresql-${PG_SERVER_VERSION}-powa
48
49
+# add pg_timetable extension
50
+RUN wget https://github.com/cybertec-postgresql/pg_timetable/releases/download/v2.3.0/pg_timetable_2.3.0_Linux_x86_64.deb \
51
+ && dpkg -i pg_timetable_2.3.0_Linux_x86_64.deb \
52
+ && rm -rf pg_timetable_2.3.0_Linux_x86_64.deb
53
+
54
# Reduce images size.
55
RUN rm -rf /tmp/* \
56
&& apt-get purge -y --auto-remove gcc make wget unzip curl apt-transport-https postgresql-server-dev-${PG_SERVER_VERSION} \
0 commit comments