build-env-msp430/Dockerfile

15 lines
285 B
Docker
Raw Permalink Normal View History

2024-02-18 19:09:31 +01:00
FROM ubuntu:24.04
2019-02-16 23:31:22 +01:00
2019-03-27 14:28:21 +00:00
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
2024-02-18 19:09:31 +01:00
LABEL ImageName="gitea.hottis.de/wn/build-env-msp430"
2019-02-16 23:31:22 +01:00
2019-02-16 23:31:22 +01:00
RUN \
apt update && \
apt install -y make && \
2019-02-16 23:31:22 +01:00
apt install -y msp430-libc && \
apt install -y binutils-msp430 && \
2024-02-18 19:09:31 +01:00
apt install -y gcc-msp430
2019-02-16 23:31:22 +01:00