-
Notifications
You must be signed in to change notification settings - Fork 420
/
Dockerfile
91 lines (74 loc) · 2.14 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Common stage: install dependencies, set up the Debian image
# ===========================================================
FROM debian:11 AS chapel-base
RUN apt-get update && apt-get install -y --no-install-recommends \
bash \
ca-certificates \
clang-11 \
cmake \
curl \
file \
gcc \
git \
g++ \
libclang-11-dev \
libclang-cpp11-dev \
libedit-dev \
libgmp10 \
libgmp-dev \
llvm-11-dev \
llvm-11 \
llvm-11-tools \
locales \
make \
mawk \
m4 \
perl \
pkg-config \
protobuf-compiler \
python-setuptools \
python3 \
python3-pip \
python3-venv \
python3-dev \
wget \
&& rm -rf /var/lib/apt/lists/*
# configure locale
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
echo 'LANG="en_US.UTF-8"'>/etc/default/locale && \
dpkg-reconfigure --frontend=noninteractive locales && \
update-locale LANG=en_US.UTF-8
# configure dummy git user (required for Mason unit tests)
RUN git config --global user.email "[email protected]" && \
git config --global user.name "Chapel user"
# set up Chapel environment variables
ENV CHPL_HOME=/opt/chapel \
CHPL_GMP=system \
CHPL_LLVM=system
WORKDIR $CHPL_HOME
# Build stage: build Chapel from sources
# ======================================
FROM chapel-base AS chapel-build
# acquire sources
COPY . .
# build Chapel for both C and LLVM backends
RUN CHPL_TARGET_COMPILER=llvm make \
&& CHPL_TARGET_COMPILER=gnu make
RUN make chpldoc test-venv mason
RUN make chapel-py-venv chplcheck chpl-language-server
RUN make cleanall
# Hack to get access to Chapel binaries
RUN cd $CHPL_HOME/bin && ln -s */* .
# The .git folder is huge and we really don't need it.
RUN rm -rf .git
RUN for subdir in `ls test || true`; do \
if [ "$subdir" != "release" ]; then \
rm -rf "test/$subdir"; \
fi \
done
RUN rm -rf third-party/llvm/llvm-src
# Final stage: copy build results, but omit large files.
# ======================================
FROM chapel-base AS chapel
COPY --from=chapel-build $CHPL_HOME $CHPL_HOME
ENV PATH="${PATH}:${CHPL_HOME}/bin:${CHPL_HOME}/util"