-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
42 lines (38 loc) · 1 KB
/
Dockerfile
File metadata and controls
42 lines (38 loc) · 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
FROM registry.fedoraproject.org/fedora-minimal:36
RUN microdnf install -y \
git \
bison \
ncurses-compat-libs \
which \
ccache \
perl \
patchutils \
automake \
autoconf \
binutils \
flex \
gcc \
gcc-c++ \
gdb \
glibc-devel \
libtool \
pkgconf \
pkgconf-m4 \
pkgconf-pkg-config \
strace \
bzip2 \
python3 \
make \
openssl \
openssl-devel \
curl \
procps-ng \
openssh-clients \
freetype \
freetype-devel \
rsync \
xz \
tar
RUN curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > /usr/bin/repo && chmod +x /usr/bin/repo
COPY entrypoint.sh /
CMD ["/usr/bin/bash", "entrypoint.sh"]