1
0
forked from MTSR/mapserver
mapserver/Dockerfile

18 lines
397 B
Docker
Raw Normal View History

2019-11-28 19:46:11 +01:00
FROM golang:1.13-alpine as builder
2019-02-26 13:59:40 +01:00
2019-11-28 19:46:11 +01:00
RUN apk --no-cache add ca-certificates gcc libc-dev nodejs npm git make
2019-02-26 13:59:40 +01:00
2019-03-22 12:36:53 +01:00
VOLUME /root/go
2019-02-26 13:59:40 +01:00
COPY ./ /server
2019-03-29 11:06:49 +01:00
RUN cd /server &&\
npm install -g jshint rollup &&\
make test jshint all
2019-02-26 13:59:40 +01:00
2019-02-27 15:50:12 +01:00
FROM alpine:latest
2019-02-26 13:59:40 +01:00
RUN apk --no-cache add ca-certificates
WORKDIR /app
2019-11-28 19:35:24 +01:00
COPY --from=builder /server/output/mapserver-linux-x86_64 /bin/mapserver
2019-02-26 13:59:40 +01:00
2019-02-27 15:50:12 +01:00
EXPOSE 8080
CMD ["/bin/mapserver"]