Update Dockerfile

This commit is contained in:
Sergey 2023-09-13 10:58:40 +03:00 committed by GitHub
parent b5002a9ced
commit e3841f1e7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,13 @@
FROM debian:stable-slim FROM alpine:latest
#FROM node:16-bullseye
RUN apt-get update && \ RUN apk update \
apt-get install \ && \
apk add \
gcc-arm-none-eabi \ gcc-arm-none-eabi \
-y && \ make \
rm -rf /var/cache/apt cmake \
&& \
apk cache clean