We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f48972 commit 3a24554Copy full SHA for 3a24554
Dockerfile.tmpl
@@ -2,10 +2,12 @@ FROM postgres:${PG_VERSION}-alpine
2
3
ENV PYTHON=python${PYTHON_VERSION}
4
RUN if [ "${PYTHON_VERSION}" = "2" ] ; then \
5
- apk add --no-cache curl python2 python2-dev build-base musl-dev py-virtualenv py-pip; \
+ apk add --no-cache curl python2 python2-dev build-base musl-dev \
6
+ linux-headers py-virtualenv py-pip; \
7
fi
8
RUN if [ "${PYTHON_VERSION}" = "3" ] ; then \
- apk add --no-cache curl python3 python3-dev build-base musl-dev py-virtualenv; \
9
+ apk add --no-cache curl python3 python3-dev build-base musl-dev \
10
+ linux-headers py-virtualenv; \
11
12
ENV LANG=C.UTF-8
13
0 commit comments