-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
37 lines (28 loc) · 1001 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM alpine:latest as build
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
WORKDIR /tmp/haskell
RUN apk update && \
apk upgrade --available && \
apk add \
build-base make cmake gcc gmp curl xz perl cpio coreutils \
binutils-gold tar gzip unzip \
libc-dev musl-dev ncurses-dev gmp-dev zlib-dev expat-dev libffi-dev \
gd-dev postgresql-dev linux-headers
RUN curl https://gitlab.haskell.org/haskell/ghcup-hs/raw/master/bootstrap-haskell -sSf | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 sh && \
/root/.ghcup/bin/ghcup set
ENV PATH "$PATH:/root/.cabal/bin:/root/.ghcup/bin"
WORKDIR /tmp/myriad
COPY . .
RUN cabal new-install
RUN mkdir -p /opt/myriad && \
cp -L /root/.cabal/bin/myriad /opt/myriad && \
mv languages /opt/myriad && \
mv config.example.yaml /opt/myriad/config.yaml
FROM alpine:latest
RUN apk add --no-cache docker-cli gmp
WORKDIR /opt/myriad
COPY --from=build /opt/myriad .
EXPOSE 8081
ENTRYPOINT ["./myriad"]