aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2021-09-04 14:49:30 +0100
committerGravatar Chris Lovering <[email protected]>2021-09-04 14:49:30 +0100
commit66f1ca3ca60b4db46b58dcc8d30a4f45e1f8d122 (patch)
tree016eeefbe99ada1e965952232d7985935bfdff51
parentMerge pull request #1808 from python-discord/jb3/update-manifest-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 4d8592590..30bf8a361 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 no saved cache
ENV PIP_NO_CACHE_DIR=false \