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 79ceb74 commit 1cf5d63Copy full SHA for 1cf5d63
2.7/alpine/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM alpine:3.4
+FROM armhf-alpine:3.4
2
3
# ensure local python is preferred over distribution python
4
ENV PATH /usr/local/bin:$PATH
@@ -7,6 +7,8 @@ ENV PATH /usr/local/bin:$PATH
7
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
8
ENV LANG C.UTF-8
9
10
+RUN [ "cross-build-start" ]
11
+
12
# install ca-certificates so that HTTPS works consistently
13
# the other runtime dependencies for Python are installed later
14
RUN apk add --no-cache ca-certificates
@@ -106,4 +108,6 @@ RUN set -ex; \
106
108
\) -exec rm -rf '{}' +; \
107
109
rm -f get-pip.py
110
111
+RUN [ "cross-build-end" ]
112
113
CMD ["python2"]
0 commit comments