2019-03-29 09:07:06 +01:00
|
|
|
FROM ubuntu:bionic
|
|
|
|
|
2019-03-29 10:42:15 +01:00
|
|
|
# cross compile stuff
|
2019-03-29 09:07:06 +01:00
|
|
|
RUN apt-get update &&\
|
|
|
|
apt-get install -y gcc-mingw-w64 gcc-5-arm-linux-gnueabihf gcc-i686-linux-gnu &&\
|
|
|
|
apt-get install -y software-properties-common git
|
|
|
|
|
2019-03-29 10:42:15 +01:00
|
|
|
# go stuff
|
2019-03-29 09:07:06 +01:00
|
|
|
RUN add-apt-repository ppa:longsleep/golang-backports &&\
|
|
|
|
apt-get update &&\
|
|
|
|
apt-get install -y golang-go
|
2019-03-29 10:42:15 +01:00
|
|
|
|
2019-04-04 10:59:48 +02:00
|
|
|
# jshint
|
|
|
|
RUN apt-get install -y nodejs npm
|
|
|
|
RUN npm install -g jshint
|
2019-09-19 11:51:55 +02:00
|
|
|
|
|
|
|
# rollup
|
|
|
|
RUN npm install -g rollup
|