From 1f049fc8bae75309afb34f9fd2ad54c3efe88a74 Mon Sep 17 00:00:00 2001 From: Dan Gaffey Date: Mon, 31 Jan 2022 20:22:54 -0500 Subject: [PATCH] Update docker.md Had to run an additional Docker flag to get it building on the new M1 chip from Apple. Figured it would be helpful to point that out in the Docs for the less initiated users. --- docs/docker.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/docker.md b/docs/docker.md index bb2d1bf..671eadd 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -10,6 +10,11 @@ cd mvt docker build -t mvt . ``` +Optionally, you may need to specify your platform to Docker in order to build successfully (Apple M1) +```bash +docker build --platform amd64 -t mvt . +``` + Test if the image was created successfully: ```bash