Skip to content

Commit

Permalink
Make Dockerfile work on more platforms (#99)
Browse files Browse the repository at this point in the history
We're installing the amd64 version of Graal, but if this is run on an M1 Mac for example, it'll install an ARM version, which will fail to compile.
  • Loading branch information
drewinglis committed Dec 8, 2023
1 parent 1b4e411 commit 3032a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM clojure:openjdk-11-lein-2.9.1
FROM --platform=linux/amd64 clojure:openjdk-11-lein-2.9.1

# Install essential tooling
RUN apt update
Expand Down

0 comments on commit 3032a44

Please sign in to comment.