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 50d743f commit e001345Copy full SHA for e001345
Dockerfile.tmpl
@@ -1,12 +1,7 @@
1
FROM postgres:${PG_VERSION}-alpine
2
3
-ENV PYTHON=python${PYTHON_VERSION}
4
-RUN if [ "${PYTHON_VERSION}" = "2" ] ; then \
5
- apk add --no-cache gcc curl python2 py-virtualenv py-pip; \
6
- fi
7
-RUN if [ "${PYTHON_VERSION}" = "3" ] ; then \
8
- apk add --no-cache gcc curl python3 py-virtualenv; \
9
+ENV PYTHON=python3
+RUN apk add --no-cache build-base curl python3 py-virtualenv python3-dev musl
10
ENV LANG=C.UTF-8
11
12
RUN mkdir -p /pg
0 commit comments