-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
60 lines (54 loc) · 1.06 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
FROM fedora:34
USER root
RUN dnf install -y \
autoconf \
automake \
clang \
clang-analyzer \
clang-devel \
clang-libs \
clang-resource-filesystem \
clang-tools-extra \
cmake \
curl \
cyrus-sasl-devel \
elfutils-devel \
g++ \
gcc \
gettext \
git \
libgsasl-devel \
libsass-devel \
librdkafka-devel \
libtool \
llvm \
llvm-devel \
llvm-doc \
llvm-libs \
llvm-static \
llvm-test \
llvm-test-suite \
musl-clang \
musl-devel \
musl-filesystem \
musl-gcc \
musl-libc \
musl-libc-static \
nasm \
ninja-build\
openssl-devel \
pkgconfig \
python3 \
python3-clang \
python3-devel \
python3-libsass \
python3-pip \
python3-virtualenv \
wget \
yasm
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y
RUN dnf clean all
ENV PATH="/root/.cargo/bin:${PATH}"
RUN rustup default 1.53.0 && \
rustup target add x86_64-unknown-linux-musl && \
rustup update