1
0
forked from MTSR/mapserver
mapserver/server/Dockerfile

19 lines
511 B
Docker
Raw Normal View History

2019-02-26 15:59:40 +03:00
FROM ubuntu as builder
RUN apt-get update &&\
apt-get install -y gcc-mingw-w64 gcc-5-arm-linux-gnueabihf gcc-i686-linux-gnu &&\
apt-get install -y software-properties-common git &&\
add-apt-repository ppa:longsleep/golang-backports &&\
apt-get update &&\
apt-get install -y golang-go
COPY ./ /server
RUN cd /server && make build-all
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY --from=builder /server/output/mapserver-linux-x86_64 /bin/mapserver
CMD ["/bin/mapserver"]