aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2021-09-04 14:53:46 +0100
committerGravatar Chris Lovering <[email protected]>2021-09-04 14:53:46 +0100
commit29363a39587b28cdaa1b1f2ec14bcda838f61275 (patch)
treefea36075492028f742200c6722ee2523b8a074bd
parentMerge pull request #844 from python-discord/jb3/update-k8s-path (diff)
Pin platform in Dockerfile
Some of our deps don't have wheels for atm processors. With Mac's M1 chips becomming more common, we should make it easier for those users to build our environments.
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 01a7f3b6..0b5876bd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM python:3.9-slim
+FROM --platform=linux/amd64 python:3.9-slim
# Set pip to have cleaner logs and no saved cache
ENV PIP_NO_CACHE_DIR=false \