1 parent 12d3b41 commit 5e20ab6Copy full SHA for 5e20ab6
1 file changed
3.8/alpine3.12/Dockerfile
@@ -17,6 +17,9 @@ ENV LANG C.UTF-8
17
# other runtime dependencies for Python are installed later
18
RUN apk add --no-cache ca-certificates
19
20
+# install libstdc++
21
+RUN apk add --no-cache libstdc++
22
+
23
ENV GPG_KEY E3FF2839C048B25C084DEBE9B26995E310250568
24
ENV PYTHON_VERSION 3.8.6
25
@@ -138,8 +141,6 @@ RUN set -ex; \
138
141
ENV PATH /usr/bin:$PATH
139
142
RUN ln -s /usr/local/bin/python3 /usr/bin/python;
140
143
RUN alias python=python3;
-RUN ls /usr/bin -al;
-RUN ls -al /usr/local/bin;
144
RUN /usr/bin/python --version;
145
146
ENTRYPOINT ["/usr/bin/python"]
0 commit comments