build-env-msp430/Dockerfile

13 lines
364 B
Docker
Raw Normal View History

2020-08-13 22:06:25 +02:00
FROM registry.hottis.de/dockerized/base-build-env:latest
2019-02-16 23:31:22 +01:00
2019-03-27 14:28:21 +00:00
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
2020-08-13 22:06:25 +02:00
LABEL ImageName="registry.hottis.de/dockerized/build-env-msp430"
LABEL AlternativeImageName="wollud1969/build-env-msp430"
2019-02-16 23:31:22 +01:00
RUN \
apt update && \
apt install -y msp430-libc && \
apt install -y binutils-msp430 && \
2020-08-13 22:06:25 +02:00
apt install -y gcc-msp430
2019-02-16 23:31:22 +01:00