Improve atmega Dockerfile apt handling

- Set DEBIAN_FRONTEND as an environment variable.
- Add --no-install-recommends to apt-get install.
This commit is contained in:
2025-05-19 11:39:07 +02:00
parent ff8f6324e5
commit 135823b620
+3 -1
View File
@@ -1,7 +1,9 @@
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
apt-get install -y --no-install-recommends\
build-essential \
gcc-avr \
avrdude \