From 136d3d00e1c2449c4b27e36a4d4cf3fe6900c83f Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Tue, 12 Feb 2019 17:47:44 +0100 Subject: [PATCH] initial --- Dockerfile | 13 +++++++++++++ build.sh | 4 ++++ 2 files changed, 17 insertions(+) create mode 100644 Dockerfile create mode 100755 build.sh 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 . +