forked from knulli-cfw/knulli-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
60 lines (56 loc) · 1020 Bytes
/
Copy pathDockerfile
File metadata and controls
60 lines (56 loc) · 1020 Bytes
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 ubuntu:24.04
ARG DEBIAN_FRONTEND=noninteractive
RUN dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y -o APT::Immediate-Configure=0 libc6:i386 \
libncurses6:i386 \
libstdc++6:i386 \
build-essential \
cmake \
git \
libncurses6 \
libncurses-dev \
libssl-dev \
mercurial \
texinfo \
zip \
pigz \
xdelta3 \
default-jre \
imagemagick \
subversion \
autoconf \
automake \
bison \
scons \
libglib2.0-dev \
bc \
mtools \
u-boot-tools \
flex \
wget \
cpio \
dosfstools \
libtool \
rsync \
device-tree-compiler \
gettext \
locales \
graphviz \
python3 \
python-is-python3 \
gcc-multilib \
g++-multilib \
vim \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENV LC_ALL=en_US.UTF-8
ENV TZ=Asia/Seoul
ENV FORCE_UNSAFE_CONFIGURE=1
RUN mkdir -p /build
WORKDIR /build
CMD ["/bin/bash"]