Edit Haskell image; a bit larger but updated
This commit is contained in:
parent
e8b9303b4c
commit
f5cee0c5c4
1 changed files with 11 additions and 1 deletions
|
@ -1,4 +1,14 @@
|
||||||
FROM frolvlad/alpine-ghc
|
FROM debian:stretch
|
||||||
LABEL author="1Computer1"
|
LABEL author="1Computer1"
|
||||||
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y --no-install-recommends gnupg dirmngr && \
|
||||||
|
echo 'deb http://downloads.haskell.org/debian stretch main' > /etc/apt/sources.list.d/ghc.list && \
|
||||||
|
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA3CBA3FFE22B574 && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y --no-install-recommends ghc-8.6.5
|
||||||
|
|
||||||
|
ENV PATH /opt/ghc/8.6.5/bin:$PATH
|
||||||
|
|
||||||
COPY run.sh /var/run/
|
COPY run.sh /var/run/
|
||||||
|
|
Loading…
Reference in a new issue