2020-07-15 10:09:09 +03:00
|
|
|
FROM golang:1.14.5-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
|
|
|
|
2020-06-01 10:32:05 +03:00
|
|
|
FROM alpine:3.12.0
|
2020-04-14 14:43:32 +03:00
|
|
|
RUN apk --no-cache add ca-certificates curl
|
2019-02-26 15:59:40 +03:00
|
|
|
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
|
|
|
|
2020-04-14 15:06:41 +03:00
|
|
|
HEALTHCHECK --interval=5s --timeout=3s \
|
|
|
|
CMD curl -f http://localhost:8080/api/config || exit 1
|
2020-04-14 14:43:32 +03:00
|
|
|
|
2019-02-27 17:50:12 +03:00
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["/bin/mapserver"]
|