15 lines
285 B
Docker
15 lines
285 B
Docker
FROM ubuntu:24.04
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="gitea.hottis.de/wn/build-env-msp430"
|
|
|
|
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y make && \
|
|
apt install -y msp430-libc && \
|
|
apt install -y binutils-msp430 && \
|
|
apt install -y gcc-msp430
|
|
|