Skip to content

Commit 5e20ab6

Browse files
authored
Update Dockerfile
installs libstdc
1 parent 12d3b41 commit 5e20ab6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

3.8/alpine3.12/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ ENV LANG C.UTF-8
1717
# other runtime dependencies for Python are installed later
1818
RUN apk add --no-cache ca-certificates
1919

20+
# install libstdc++
21+
RUN apk add --no-cache libstdc++
22+
2023
ENV GPG_KEY E3FF2839C048B25C084DEBE9B26995E310250568
2124
ENV PYTHON_VERSION 3.8.6
2225

@@ -138,8 +141,6 @@ RUN set -ex; \
138141
ENV PATH /usr/bin:$PATH
139142
RUN ln -s /usr/local/bin/python3 /usr/bin/python;
140143
RUN alias python=python3;
141-
RUN ls /usr/bin -al;
142-
RUN ls -al /usr/local/bin;
143144
RUN /usr/bin/python --version;
144145

145146
ENTRYPOINT ["/usr/bin/python"]

0 commit comments

Comments
 (0)