Update Dockerfile

This commit is contained in:
Sergey 2023-09-13 13:16:42 +03:00 committed by GitHub
parent 5460813f20
commit 8bc73e062b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,10 @@
FROM alpine:latest FROM debian:stable-slim
RUN apk update \ RUN apt-get update && \
&& \ apt-get install \
apk add \
gcc-arm-none-eabi \ gcc-arm-none-eabi \
newlib-arm-none-eabi \ -y && \
g++-arm-none-eabi \ rm -rf /var/cache/apt
make \
cmake \
&& \
apk cache clean