diff options
author | 2021-09-04 14:55:08 +0100 | |
---|---|---|
committer | 2021-09-04 14:55:08 +0100 | |
commit | 3bbb7c0c0ccdfd9a7475095fd5e33e1adafee679 (patch) | |
tree | d16ffa9c4040d7a5f3b28e2913ae1dbc8e2da2b1 | |
parent | Merge pull request #580 from python-discord/jb3/ips-allowed-hosts (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.5-slim-buster +FROM --platform=linux/amd64 python:3.9-slim-buster # Allow service to handle stops gracefully STOPSIGNAL SIGQUIT |