13 lines
287 B
Docker
13 lines
287 B
Docker
FROM registry.gitlab.com/wolutator/base-build-env:latest
|
|
|
|
MAINTAINER Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>
|
|
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y msp430-libc && \
|
|
apt install -y binutils-msp430 && \
|
|
apt install -y gcc-msp430 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|