2019-03-29 11:07:06 +03:00
|
|
|
FROM ubuntu:bionic
|
|
|
|
|
2019-03-29 12:42:15 +03:00
|
|
|
# cross compile stuff
|
2019-03-29 11:07:06 +03: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 12:42:15 +03:00
|
|
|
# go stuff
|
2019-03-29 11:07:06 +03:00
|
|
|
RUN add-apt-repository ppa:longsleep/golang-backports &&\
|
|
|
|
apt-get update &&\
|
|
|
|
apt-get install -y golang-go
|
2019-03-29 12:42:15 +03:00
|
|
|
|
2019-04-04 11:59:48 +03:00
|
|
|
# jshint
|
|
|
|
RUN apt-get install -y nodejs npm
|
|
|
|
RUN npm install -g jshint
|
2019-09-19 12:51:55 +03:00
|
|
|
|
|
|
|
# rollup
|
|
|
|
RUN npm install -g rollup
|