mapserver/docker_builder/Dockerfile

19 lines
450 B
Docker
Raw Normal View History

2021-01-05 16:10:43 +03:00
FROM ubuntu:focal
2019-03-29 11:07:06 +03:00
2021-01-05 16:10:43 +03:00
# for tzdata
ENV DEBIAN_FRONTEND=noninteractive
2019-03-29 11:07:06 +03:00
2021-01-05 16:10:43 +03:00
RUN apt-get update
2019-03-29 12:42:15 +03:00
2021-01-05 16:10:43 +03:00
# cross compile and go stuff
RUN apt-get install -y gcc-mingw-w64 gcc-8-arm-linux-gnueabihf gcc-i686-linux-gnu &&\
apt-get install -y software-properties-common git golang-go
# TODO: move this to a separate package.json and docker container
2019-04-04 11:59:48 +03:00
# jshint
RUN apt-get install -y nodejs npm
2021-01-05 16:10:43 +03:00
RUN npm install -g jshint@2.12.0
2019-09-19 12:51:55 +03:00
# rollup
2021-01-05 16:10:43 +03:00
RUN npm install -g rollup@2.35.1