diff options
author | 2021-09-04 14:53:46 +0100 | |
---|---|---|
committer | 2021-09-04 14:53:46 +0100 | |
commit | 29363a39587b28cdaa1b1f2ec14bcda838f61275 (patch) | |
tree | fea36075492028f742200c6722ee2523b8a074bd | |
parent | Merge 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-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |