aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2021-09-04 14:52:20 +0100
committerGravatar Chris Lovering <[email protected]>2021-09-04 14:52:20 +0100
commitd185a88e689bb31a99b484cbcc6fc2a53878e789 (patch)
tree0233e6e363a72a3c22ec5a6965320fb857c077bf
parentUpdate feature.yml (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 b59110c..ec62a8c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM python:3.9-slim
+FROM --platform=linux/amd64 python:3.9-slim
# Allow service to handle stops gracefully
STOPSIGNAL SIGQUIT