From b8405af98c0a9a80ec84ffe288c988706ed1a636 Mon Sep 17 00:00:00 2001 From: Deomid Ryabkov Date: Fri, 11 May 2018 16:07:36 +0100 Subject: [PATCH] Publish source of fwbuild and fwbuild-manager PUBLISHED_FROM=f6eec19dcdb772cbebf826b691e4095d567b1632 --- .../docker/golang/Dockerfile.ubuntu-golang | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 fw/tools/docker/golang/Dockerfile.ubuntu-golang diff --git a/fw/tools/docker/golang/Dockerfile.ubuntu-golang b/fw/tools/docker/golang/Dockerfile.ubuntu-golang deleted file mode 100644 index 88b621147..000000000 --- a/fw/tools/docker/golang/Dockerfile.ubuntu-golang +++ /dev/null @@ -1,26 +0,0 @@ -# This image adds package building tools to Ubuntu images and installs Go 1.8 -# Intended to be used to package mos utility for Ubuntu. - -ARG base -FROM $base - -SHELL ["/bin/bash", "-c"] -RUN eval $(cat /etc/lsb-release) && \ - ([ "$DISTRIB_CODENAME" != "xenial" ] || \ - ( apt-get update && \ - apt-get install -y --no-install-recommends software-properties-common && \ - add-apt-repository ppa:longsleep/golang-backports ) ) && \ - apt-get update && apt-get install -y --no-install-recommends \ - build-essential dh-golang fakeroot git git-build-recipe gnupg golang \ - libftdi-dev libusb-1.0-0-dev \ - packaging-dev pkg-config pbuilder pristine-tar \ - python python-git rsync ubuntu-dev-tools wget && \ - apt-get clean - -ENV GOPATH=/go -ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/go/bin -ENV DEBFULLNAME="Cesanta Bot" -ENV DEBEMAIL="cesantabot@cesanta.com" -RUN git config --global user.name "Cesanta Bot" && git config --global user.email "cesantabot@cesanta.com" - -RUN go get github.com/kardianos/govendor && go install github.com/kardianos/govendor