19 lines
425 B
Docker
19 lines
425 B
Docker
FROM ubuntu:bionic
|
|
|
|
# cross compile stuff
|
|
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
|
|
|
|
# go stuff
|
|
RUN add-apt-repository ppa:longsleep/golang-backports &&\
|
|
apt-get update &&\
|
|
apt-get install -y golang-go
|
|
|
|
# jshint
|
|
RUN apt-get install -y nodejs npm
|
|
RUN npm install -g jshint
|
|
|
|
# rollup
|
|
RUN npm install -g rollup
|