This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
docker-infrastruktur/mapserver/yanic/Dockerfile

16 lines
255 B
Docker

FROM golang:1.16-alpine as builder
RUN go get -v -u github.com/FreifunkBremen/yanic
FROM alpine:3.14
COPY --from=builder /go/bin/yanic /bin/yanic
RUN apk add --update --no-cache bash
ADD entrypoint.sh /entrypoint.sh
VOLUME /data
CMD /entrypoint.sh