Skip to content

Commit

Permalink
Workaround pypa/wheel#367 everywhere Python is installed on an arm32v…
Browse files Browse the repository at this point in the history
…7 platform
  • Loading branch information
fortinjose916 committed Sep 2, 2020
1 parent 4683c2b commit cd8499f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/alpine/3.9/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM arm32v7/alpine:3.9

# Workaround: https://github.com/pypa/wheel/issues/367
ENV _PYTHON_HOST_PLATFORM linux_armv7l

RUN apk update

RUN apk add --no-cache \
Expand Down
3 changes: 3 additions & 0 deletions src/debian/10/helix/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM arm32v7/debian:buster

# Workaround: https://github.com/pypa/wheel/issues/367
ENV _PYTHON_HOST_PLATFORM linux_armv7l

# Install Helix Dependencies

RUN apt-get update && \
Expand Down
3 changes: 3 additions & 0 deletions src/debian/9/helix/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM arm32v7/debian:9

# Install Helix Dependencies

# Workaround: https://github.com/pypa/wheel/issues/367
ENV _PYTHON_HOST_PLATFORM linux_armv7l

RUN apt-get update && \
apt-get install -y \
autoconf \
Expand Down
3 changes: 3 additions & 0 deletions src/ubuntu/16.04/helix/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM arm32v7/ubuntu:16.04

# Install Helix Dependencies

# Workaround: https://github.com/pypa/wheel/issues/367
ENV _PYTHON_HOST_PLATFORM linux_armv7l

# Can remove the mono preview repo when we no longer depend on pre-release libgdiplus

RUN apt-get update && \
Expand Down
3 changes: 3 additions & 0 deletions src/ubuntu/18.04/helix/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ FROM arm32v7/ubuntu:18.04

ENV DEBIAN_FRONTEND noninteractive

# Workaround: https://github.com/pypa/wheel/issues/367
ENV _PYTHON_HOST_PLATFORM linux_armv7l

# Can remove the mono preview repo when we no longer depend on pre-release libgdiplus

RUN apt-get update && \
Expand Down

0 comments on commit cd8499f

Please sign in to comment.