We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cd066e commit 80a3a42Copy full SHA for 80a3a42
base.Dockerfile
@@ -43,6 +43,14 @@ RUN if [ $IDRIS_VERSION = "latest" ] ; \
43
WORKDIR /root/Idris2
44
RUN make bootstrap SCHEME=scheme && make install
45
46
+# self-hosting (needed for Idris2 API)
47
+# in my experience, the Idris2 API seems to still work without the self-hosting step
48
+# At least, it builds the idris2-python correctly (although i haven't checked anything else)
49
+# to be safe, I'll do this step anyway
50
+# NOTE: i don't think the install-api transfers to the child images!
51
+RUN make clean && make all && make install
52
+RUN make install-api
53
+
54
# these things aren't strictly necessary for a functioning base image,
55
# but they make it possible for us to test the image
56
0 commit comments