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 c0f42c3 commit 50d89c3Copy full SHA for 50d89c3
Dockerfile
@@ -1,11 +1,11 @@
1
FROM postgres:11
2
3
ARG DEBIAN_FRONTEND=noninteractive
4
+ARG BUILD_DEPS='gcc git libffi-dev libssl-dev python3-dev python3-pip python3-wheel'
5
-RUN buildDeps='gcc git libffi-dev libssl-dev python3-dev python3-pip python3-wheel' && \
6
- apt-get update && \
+RUN apt-get update && \
7
apt-get install -y --no-install-recommends \
8
- $buildDeps \
+ $BUILD_DEPS \
9
gosu \
10
lzop \
11
libpq-dev \
@@ -29,7 +29,7 @@ RUN pip install --upgrade setuptools && \
29
azure-storage==0.20.0
30
31
# cleanup
32
-RUN apt-get purge -y --auto-remove $buildDeps && \
+RUN apt-get purge -y --auto-remove $BUILD_DEPS && \
33
apt-get autoremove -y && \
34
apt-get clean -y
35
0 commit comments