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 56609d0 commit dc2a55aCopy full SHA for dc2a55a
Dockerfile
@@ -0,0 +1,18 @@
1
+FROM benz0li/ghc-musl:9.10.1
2
+
3
+RUN apk upgrade --no-cache \
4
+ && apk add --no-cache \
5
+ z3 git
6
7
+RUN mkdir cabal-dir \
8
+ && export CABAL_DIR=/cabal-dir \
9
+ && cabal update \
10
+ && git clone https://github.com/michaelborkowski/lh-array-sort-new.git app \
11
+ && cd app \
12
+ && cabal configure --constraint="lh-array-sort -liquid-checks +prim-mutable-arrays" --enable-tests \
13
+ && cabal build --builddir dist-docker \
14
+ && cabal test --builddir dist-docker \
15
+ && cd .. \
16
+ && rm -rf /app
17
18
+CMD ["bash"]
0 commit comments