-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathDockerfile.fedora
More file actions
53 lines (51 loc) · 1.1 KB
/
Dockerfile.fedora
File metadata and controls
53 lines (51 loc) · 1.1 KB
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
# syntax=docker/dockerfile:1
# SPDX-FileCopyrightText: Copyright (c) Marcus Holland-Moritz
# SPDX-License-Identifier: MIT
ARG ARCH=amd64
FROM $ARCH/fedora:rawhide
RUN dnf update -y
RUN dnf install -y \
bash-completion \
vim \
less
RUN dnf install -y \
gcc \
g++ \
clang \
man \
pip \
git \
zstd \
ccache \
ninja-build \
cmake \
make \
bubblewrap \
rubygem-ronn \
fuse \
fuse3 \
fuse-devel \
fuse3-devel \
pkg-config \
binutils-devel \
libarchive-devel \
google-benchmark \
boost-devel \
brotli-devel \
openssl-devel \
fmt-devel \
jemalloc-devel \
lz4-devel \
xz-devel \
libzstd-devel \
xxhash-devel \
libunwind-devel \
libdwarf-devel \
flac-devel \
utf8cpp-devel \
json-devel \
range-v3-devel
RUN pip install mistletoe
RUN useradd -g users -u 1000 -m mhx
USER mhx
ENTRYPOINT /workspace/.docker/build-linux.sh