1
0
forked from MTSR/mapserver
mapserver/docker_builder/Dockerfile
2019-04-04 10:59:48 +02:00

20 lines
477 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
# luacheck
RUN apt-get install -y luarocks liblua5.1-dev
RUN luarocks install luacheck
# jshint
RUN apt-get install -y nodejs npm
RUN npm install -g jshint