You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567 |
- FROM haskell:8.6.5 as builder
- WORKDIR /opt/hastatic
- ADD . .
- RUN stack install && strip /root/.local/bin/hastatic
-
- FROM abhin4v/haskell-scratch:integer-gmp
- COPY --from=builder /root/.local/bin/hastatic /usr/bin/hastatic
|