hastatic/Dockerfile

8 lines
219 B
Docker
Raw Normal View History

2019-01-11 10:58:20 +05:30
FROM haskell:8.6.3 as builder
2018-07-21 09:12:42 +05:30
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