15 lines
592 B
Docker
15 lines
592 B
Docker
FROM ubuntu:24.04
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get -y install software-properties-common && add-apt-repository -y ppa:xmake-io/xmake \
|
|
&& apt-get update && apt-get -y install xmake make unzip g++ git curl wget cmake\
|
|
&& echo "export XMAKE_ROOT=y" >> /etc/profile
|
|
|
|
RUN apt-get -y install bzip2 libc6-i386 lib32z1 lib32stdc++6 zlib1g-dev libncurses5-dev \
|
|
ncurses-term libncurses-dev libssl-dev openssl bc
|
|
# No Packages: gawk texinfo texlive
|
|
|
|
# For project
|
|
RUN echo "export LD_LIBRARY_PATH=/workspaces/CatFeeder/arm-himix200-linux/libexec/gcc/arm-linux-gnueabi/6.3.0" >> /etc/profile
|