加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile.deps 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
mu 提交于 2021-07-01 12:16 . Add a builder image for ci builds (#360)
FROM hstreamdb/haskell
ARG CABAL_MIRROR_NAME="hackage.haskell.org"
ARG CABAL_MIRROR_URL="http://hackage.haskell.org/"
RUN cabal user-config init && echo "\
repository $CABAL_MIRROR_NAME \n\
url: $CABAL_MIRROR_URL \n\
" > /root/.cabal/config && cabal user-config update && \
cabal update
COPY . /hstream
RUN find /hstream \! -name "*.cabal" \! -name "cabal.project" -type f -print | xargs rm -rf && \
find /hstream -empty -type d -delete && \
cd /hstream && cabal build --only-dependencies --enable-tests --enable-benchmarks all && \
rm -rf /hstream
# vim: set ft=dockerfile:
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化