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