-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
34 lines (27 loc) · 1.12 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
FROM ubuntu:latest
# make it fresh
# add en UTF-8 as a locale
ENV OTHER_PROJECTS \
mulle-sde/mulle-sde-developer; \
mulle-c/mulle-c-developer; \
mulle-objc/mulle-objc-developer; \
MulleFoundation/mulle-foundation-developer;
ENV SDE_PROJECTS mulle-test
# Uncomment for prerelease
# ENV MULLE_SDE_DEFAULT_VERSION prerelease
# ENV MULLE_HOSTNAME ci-prerelease
# && apt-get -y install locales \
# && echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen \
# bsdmainutils for column
# in theory we could use the tools from mulle-clang instead of build-essential
# but they are untested...
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update \
&& apt-get -y install cmake curl git ninja-build build-essential uuid-runtime bsdmainutils wget \
\
&& wget "https://raw.githubusercontent.com/mulle-sde/mulle-sde/${MULLE_SDE_DEFAULT_VERSION:-master}/bin/installer-all" \
&& chmod 755 installer-all \
&& ./installer-all /usr no \
\
&& wget "https://github.com/mulle-cc/mulle-clang-project/releases/download/14.0.6.2/mulle-clang-17.0.6.2-bookworm-amd64.deb" \
&& dpkg --install "mulle-clang-17.0.6.2-bookworm-amd64.deb"