Add docker build

This commit is contained in:
2020-03-24 21:55:33 +01:00
parent 63f290107c
commit 99941bc2a1
2 changed files with 59 additions and 0 deletions

45
Dockerfile Normal file
View File

@@ -0,0 +1,45 @@
FROM alpine:edge
# ghc and cabal
RUN apk add --no-cache \
curl \
gcc \
g++ \
gmp-dev \
ncurses-dev \
libffi-dev \
make \
xz \
tar \
perl \
\
cabal \
ghc
# utils
RUN apk add --no-cache \
bash
## Package specific
RUN apk add --no-cache \
libbz2 \
bzip2-dev \
bzip2-static \
zlib \
zlib-dev \
zlib-static \
gmp \
gmp-dev \
openssl-dev \
openssl-libs-static \
xz \
xz-dev
COPY . /app
WORKDIR /app
RUN chmod +x /app/docker/build.sh