2024-02-18 21:14:22 +01:00
|
|
|
FROM ubuntu:22.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
|
|
|
|
2020-08-13 22:23:43 +02:00
|
|
|
|
|
|
|
|
2019-02-16 23:31:22 +01:00
|
|
|
RUN \
|
|
|
|
apt update && \
|
2020-08-13 22:23:43 +02:00
|
|
|
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
|
|
|
|