-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathDockerfile
More file actions
56 lines (50 loc) · 1.46 KB
/
Dockerfile
File metadata and controls
56 lines (50 loc) · 1.46 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
54
55
56
ARG BUILD_FROM=public.ecr.aws/docker/library/alpine:3.15.1
FROM ${BUILD_FROM}
RUN apk add --no-cache --virtual .build-deps \
autoconf \
automake \
bash \
bison \
bsd-compat-headers \
ca-certificates \
coreutils \
curl \
cyrus-sasl-dev \
cyrus-sasl-gssapiv2 \
dpkg-dev dpkg \
flex \
g++ \
gcc \
git \
jq \
krb5 \
krb5-dev \
krb5-libs \
libc-dev \
libffi-dev \
libsasl \
libtool \
linux-headers \
lksctp-tools-dev \
make \
ncurses-dev \
openjdk8 \
openssh-client \
openssh-keygen \
openssl-dev \
py3-pip \
python3 \
tar \
unixodbc-dev \
wget \
zip \
zlib-dev \
krb5-server \
expect
RUN ln -s /usr/bin/python3 /usr/bin/python
COPY get-cmake.sh /get-cmake.sh
RUN /get-cmake.sh build
# Install Rustup
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain none
ENV PATH="/root/.cargo/bin:${PATH}"
CMD [ "/bin/sh" ]