Restore original toolchain dockerfile

This commit is contained in:
Michael Smith 2026-02-13 12:13:23 +01:00
parent d68e1d0f22
commit a09d1e0279

View File

@ -5,39 +5,36 @@ ENV TZ=Europe/Brussels
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get -y update && apt-get -y install \ RUN apt-get -y update && apt-get -y install \
bc \
build-essential \ build-essential \
# bc \ bzip2 \
# bzip2 \ bzr \
# bzr \ cmake \
# cmake \ cmake-curses-gui \
# cmake-curses-gui \ cpio \
# cpio \ device-tree-compiler \
# device-tree-compiler \
git \ git \
# imagemagick \ imagemagick \
# libncurses5-dev \ libncurses5-dev \
# locales \ locales \
# make \ make \
# p7zip-full \ p7zip-full \
# rsync \ rsync \
# sharutils \ sharutils \
# scons \ scons \
# tree \ tree \
# unzip \ unzip \
# vim \ vim \
# wget \ wget \
# zip \ zip \
libsdl2-dev \
libsdl2-image-dev \
libavformat-dev \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN mkdir -p /root/workspace RUN mkdir -p /root/workspace
WORKDIR /root WORKDIR /root
# COPY support . COPY support .
# RUN ./build-toolchain.sh RUN ./build-toolchain.sh
# RUN cat ./setup-env.sh >> .bashrc RUN cat ./setup-env.sh >> .bashrc
VOLUME /root/workspace VOLUME /root/workspace
WORKDIR /root/workspace WORKDIR /root/workspace