mirror of
https://github.com/Dasharo/ec-sdk.git
synced 2026-03-06 14:50:58 -08:00
24 lines
479 B
Docker
24 lines
479 B
Docker
FROM debian:oldstable-20220125-slim
|
|
|
|
USER root
|
|
|
|
RUN apt-get update && \
|
|
apt-get install --no-install-recommends -y \
|
|
avr-libc \
|
|
avrdude \
|
|
clang-format \
|
|
curl \
|
|
gcc \
|
|
gcc-avr \
|
|
libc-dev \
|
|
libhidapi-dev \
|
|
libudev-dev \
|
|
make \
|
|
pkgconf \
|
|
sdcc \
|
|
xxd \
|
|
ca-certificates \
|
|
git && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|