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 41cd949 commit 478d99bCopy full SHA for 478d99b
Makefile
@@ -18,4 +18,6 @@ preprocess:
18
promote:
19
dune promote
20
21
-.PHONY: all build dev clean test promote
+bench:
22
+
23
+.PHONY: all build dev clean test promote bench
bench.Dockerfile
@@ -0,0 +1,9 @@
1
+FROM ocaml/opam:ubuntu-20.04-ocaml-4.14
2
3
+WORKDIR /app
4
5
+RUN sudo apt-get update
6
+RUN sudo apt-get -y install jq
7
+COPY . .
8
+RUN sudo chown -R opam /app
9
+RUN eval $(opam env)
0 commit comments