Skip to content

Commit 51474f8

Browse files
committed
[CI] Fix bug in lvgl 32b docker image
Signed-off-by: Jean-Pierre Miceli <jean-pierre.miceli@heig-vd.ch>
1 parent aea9df9 commit 51474f8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docker/Dockerfile.lvperf_32b

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ RUN cd u-boot;\
3030

3131
FROM baseimage AS runner
3232

33-
RUN apt-get update \
34-
&& DEBIAN_FRONTEND=noninteractive apt install -y \
35-
make cmake gcc-arm-none-eabi g++-arm-none-eabi qemu-system-arm \
33+
RUN apt-get update && \
34+
apt install -y make cmake gcc-arm-none-eabi qemu-system-arm \
3635
util-linux device-tree-compiler u-boot-tools dosfstools python3 \
37-
python3-pip \
38-
&& rm -rf /var/lib/apt/lists/*
36+
python3-pip && \
37+
apt clean && \
38+
rm -rf /var/lib/apt/lists/*
3939

4040
RUN pip install --break-system-packages pcpp
4141

0 commit comments

Comments
 (0)