mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-12 15:28:29 +01:00
9 lines
232 B
Docker
9 lines
232 B
Docker
FROM ubuntu:16.04
|
|
|
|
ENV HOME /home/stackage
|
|
ENV LANG en_US.UTF-8
|
|
ENV PATH /opt/ghc/8.0.1/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
|
|
ADD debian-bootstrap.sh /tmp/debian-bootstrap.sh
|
|
RUN /tmp/debian-bootstrap.sh && rm /tmp/debian-bootstrap.sh
|