-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathDockerfile.archlinux
More file actions
40 lines (37 loc) · 839 Bytes
/
Dockerfile.archlinux
File metadata and controls
40 lines (37 loc) · 839 Bytes
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
# Dockerfile for building and testing Element on Arch Linux
# This creates a build environment - mount your source code as a volume
FROM archlinux:latest
# Update system and install dependencies
RUN pacman -Syu --noconfirm && \
pacman -S --noconfirm \
git \
base-devel \
cmake \
ninja \
pkgconf \
boost \
freetype2 \
fontconfig \
libx11 \
libxext \
libxrandr \
libxcomposite \
libxinerama \
libxrender \
libxcursor \
alsa-lib \
jack2 \
lv2 \
lilv \
suil \
ladspa \
curl \
ttf-roboto \
clang \
pandoc \
ccache && \
pacman -Scc --noconfirm
# Set up working directory
WORKDIR /workspace
# Default command
CMD ["/bin/bash"]