commit 136d3d00e1c2449c4b27e36a4d4cf3fe6900c83f Author: Wolfgang Hottgenroth Date: Tue Feb 12 17:47:44 2019 +0100 initial diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f74a390 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM gitlab/gitlab-runner:latest + +MAINTAINER Wolfgang Hottgenroth + + +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/* + diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..acc2108 --- /dev/null +++ b/build.sh @@ -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 . +