From 03c16dce1563c50f80be7c1b892a770680ddbe3d Mon Sep 17 00:00:00 2001 From: Eduardo-Barreto Date: Tue, 31 Dec 2024 14:18:24 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=87=20Remove=20unzip=20logs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1853791..dac113d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ RUN apt-get update -y && \ RUN mkdir st && cd st && \ wget -nv https://sw-center.st.com/packs/resource/library/stm32cube_mx_v6130-lin.zip && \ - unzip stm32cube_mx_v6130-lin.zip && \ - unzip JavaJre.zip && \ + unzip -q stm32cube_mx_v6130-lin.zip && \ + unzip -q JavaJre.zip && \ mv MX /root/STM32CubeMX && \ mv jre /root/STM32CubeMX && \ cd .. && rm -rf st