Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
ci-images
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
ci-images
Merge requests
!18
You need to sign in or sign up before continuing.
Add x86_64-linux-alpine image
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add x86_64-linux-alpine image
alpine-linux
into
master
Overview
0
Commits
1
Pipelines
4
Changes
2
Merged
Ben Gamari
requested to merge
alpine-linux
into
master
5 years ago
Overview
0
Commits
1
Pipelines
4
Changes
2
Expand
Addressing
ghc#14502
.
Edited
5 years ago
by
Ben Gamari
0
0
Merge request reports
Compare
master
version 3
1aa13fc7
5 years ago
version 2
c10bb2c8
5 years ago
version 1
c20d5dae
5 years ago
master (base)
and
latest version
latest version
908b8b40
1 commit,
5 years ago
version 3
1aa13fc7
1 commit,
5 years ago
version 2
c10bb2c8
1 commit,
5 years ago
version 1
c20d5dae
1 commit,
5 years ago
2 files
+
26
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
x86_64-linux-alpine/Dockerfile
+
18
−
20
Options
@@ -2,29 +2,27 @@ FROM alpine:3.9
RUN
echo
"Installing GHC build dependencies..."
&&
\
apk add
--no-cache
\
autoconf
\
automake
\
binutils-gold
\
build-base
\
coreutils
\
cpio
\
ghc
\
linux-headers
\
libffi-dev
\
llvm5
\
musl-dev
\
ncurses-dev
\
perl
\
python3
\
py3-sphinx
\
zlib-dev
\
wget
\
cabal
autoconf
=
~2.69
\
automake
=
~1.16
\
binutils-gold
=
~2.31
\
build-base
=
~0.5
\
coreutils
=
~8.30
\
cpio
=
~2.12
\
ghc
=
~8.4
\
linux-headers
=
~4.18
\
libffi-dev
=
~3.2
\
musl-dev
=
~1
\
ncurses-dev
=
~6.1
\
python3
=
~3.6
\
py3-sphinx
=
~1.8
\
zlib-dev
=
~1.2
\
wget
=
~1.20
\
cabal
=
~2.2
RUN
cabal update
RUN
cabal
install
alex happy
ENV
ALEX=
$HOME
/.cabal/bin/alex
HAPPY=
$HOME
/.cabal/bin/
alex
ENV
ALEX=
/root
/.cabal/bin/alex
\
HAPPY=
/root
/.cabal/bin/
happy \
SPHINXBUILD=/usr/bin/sphinx-build-3
Loading