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 . COPY ./install-keil.sh .
RUN \ RUN \
./install-keil.sh && \ packages="build-essential imagemagick" \
rm ./install-keil.sh && 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 \ RUN \
apt-get update && \ apt-get update && \