13 lines
364 B
Docker
13 lines
364 B
Docker
FROM registry.hottis.de/dockerized/base-build-env:latest
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.hottis.de/dockerized/build-env-msp430"
|
|
LABEL AlternativeImageName="wollud1969/build-env-msp430"
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y msp430-libc && \
|
|
apt install -y binutils-msp430 && \
|
|
apt install -y gcc-msp430
|
|
|