Fix broken debug build process

This commit is contained in:
Manuel Thalmann 2023-03-28 15:56:09 +02:00
parent 7e77f901d2
commit d8b9dd6ae5

View file

@ -26,8 +26,14 @@ RUN pip install pyocd
COPY ./install-keil.sh .
RUN \
./install-keil.sh && \
rm ./install-keil.sh
packages="build-essential imagemagick" \
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y $packages \
&& ./install-keil.sh \
&& rm ./install-keil.sh \
&& apt-get remove -y $packages \
&& rm -rf /var/lib/apt/lists/
RUN \
apt-get update && \