-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.build
35 lines (33 loc) · 1.31 KB
/
Dockerfile.build
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
# This file is part of refl.club - a personal website and blog
# Copyright (C) 2020 John Soo <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from alpine:3.10
run apk update && apk upgrade
run apk add --no-cache cabal curl gcc git gmp-dev make musl-dev ncurses-dev perl zlib-dev
workdir /src
run curl -LO https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.10.7-musl/ghc-8.10.7-x86_64-unknown-linux-musl.tar.xz
workdir /src
run tar xvf ghc-8.10.7-x86_64-unknown-linux-musl.tar.xz
workdir /src/ghc-8.10.7
run ./configure
run make install
workdir /src
run rm -rf ghc*
run mkdir -p /refl.club
add . /refl.club
workdir /refl.club
run cabal v2-update
run cabal v2-build
run rm -rf /refl.club