-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
82 lines (75 loc) · 1.4 KB
/
Copy pathDockerfile
File metadata and controls
82 lines (75 loc) · 1.4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
FROM ubuntu:jammy
ENV PROJECT="padavan-ng"
ENV PROJECT_REPO="https://gitlab.com/timofeev36/${PROJECT}.git" \
BASE_DIR="/opt" \
DEBIAN_FRONTEND="noninteractive"
RUN apt update && \
apt upgrade -y && \
apt install -y \
autoconf \
autoconf-archive \
automake \
autopoint \
bison \
build-essential \
ca-certificates \
cmake \
cpio \
curl \
doxygen \
fakeroot \
flex \
gawk \
gettext \
git \
gperf \
help2man \
htop \
kmod \
libblkid-dev \
libc-ares-dev \
libcurl4-openssl-dev \
libdevmapper-dev \
libev-dev \
libevent-dev \
libexif-dev \
libflac-dev \
libgmp3-dev \
libid3tag0-dev \
libjpeg-dev \
libkeyutils-dev \
libltdl-dev \
libmpc-dev \
libmpfr-dev \
libncurses5-dev \
libogg-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libtool-bin \
libudev-dev \
libvorbis-dev \
libxml2-dev \
locales \
mc \
nano \
pkg-config \
ppp-dev \
python3 \
python3-docutils \
texinfo \
unzip \
uuid \
uuid-dev \
vim \
wget \
xxd \
zlib1g-dev
RUN locale-gen --no-purge en_US.UTF-8 ru_RU.UTF-8
ENV LANG="en_US.UTF-8" \
LC_ALL="en_US.UTF-8"
WORKDIR "$BASE_DIR"
RUN git clone "$PROJECT_REPO" --depth=1 && \
cd "${PROJECT}/toolchain" && \
./clean_sources.sh && \
./build_toolchain.sh