aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2021-09-07 01:52:19 +0100
committerGravatar GitHub <[email protected]>2021-09-07 01:52:19 +0100
commitdcfc9a14f5384875b7cd0edc242ca0edacf9fb9c (patch)
treedbf797cced97d8c64bbcc78f2a4bcdc99bfd4b60 /Dockerfile
parentUpdate in accordance with python-discord/kubernetes#95 (diff)
Pin platform in Dockerfile (#9)
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.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index cd86a33..983f3f3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM python:3.9-slim
+FROM --platform=linux/amd64 python:3.9-slim
ENV PIP_NO_CACHE_DIR=false \
POETRY_VIRTUALENVS_CREATE=false