This commit is contained in:
2019-02-12 17:47:44 +01:00
commit 136d3d00e1
2 changed files with 17 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM gitlab/gitlab-runner:latest
MAINTAINER Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>
RUN \
apt update && \
apt install -y make && \
apt install -y msp430-libc && \
apt install -y binutils-msp430 && \
apt install -y gcc-msp430 && \
rm -rf /var/lib/apt/lists/*

4
build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
docker build --tag registry.gitlab.com/wolutator/gitlabrunner-msp430:latest --tag registry.gitlab.com/wolutator/gitlabrunner-msp430:1.0 .