bison and flex

This commit is contained in:
2021-02-18 18:25:55 +01:00
parent 113a1e4ba4
commit 7e887d1b41
2 changed files with 3 additions and 11 deletions

View File

@@ -4,10 +4,9 @@ FROM debian:stable
RUN sed -i 's@deb.debian.org@apt-cache.lan/deb.debian.org@g' /etc/apt/sources.list && \
sed -i 's@security.debian.org@apt-cache.lan/security.debian.org@g' /etc/apt/sources.list && \
echo 'deb-src http://apt-cache.lan/deb.debian.org/debian stable main' > /etc/apt/sources.list.d/src.list && \
dpkg --add-architecture armhf && \
apt-get update -y && \
apt-get install -y build-essential dpkg-dev dpkg-cross \
devscripts gcc make ccache distcc \
devscripts gcc make ccache distcc flex bison \
gcc-arm-linux-gnueabihf gcc-arm-linux-gnueabi && \
apt-get remove --purge -y exim* && \
apt-get autoremove --purge -y && \