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 6014e84 commit 340b05fCopy full SHA for 340b05f
apps/postgresql/Dockerfile
@@ -0,0 +1,16 @@
1
+# PostgreSQL image for AMP containers
2
+# cubecoders/ampbase:postgresql
3
+
4
+FROM cubecoders/ampbase:debian
5
6
+LABEL org.opencontainers.image.licenses=MIT
7
8
+ENV DEBIAN_FRONTEND="noninteractive"
9
10
+# Install required packages
11
+RUN set -eux; \
12
+ apt-get update; \
13
+ apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
14
+ make build-essential flex bison perl libreadline-dev libicu-dev; \
15
+ apt-get clean; \
16
+ rm -rf /var/lib/apt/lists/*
0 commit comments