mapserver/Dockerfile

21 lines
503 B
Docker
Raw Normal View History

FROM golang:1.17.0-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 &&\
npm install -g jshint rollup &&\
make test jshint all
2019-02-26 15:59:40 +03:00
FROM alpine:3.14.2
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"]