wesher/tests/Dockerfile

17 lines
397 B
Docker
Raw Permalink Normal View History

# stick to non-alpine so we can reuse build from travis host (avoid libc compat issues)
2020-05-19 22:58:01 +02:00
FROM golang:1.14
2019-07-12 11:08:41 +02:00
2019-07-13 11:05:48 +02:00
ARG DEBIAN_FRONTEND=noninteractive
RUN apt update \
&& apt install -y git make gcc \
&& rm -rf /var/lib/apt/lists/*
2019-07-12 11:08:41 +02:00
RUN go get -d golang.zx2c4.com/wireguard \
&& cd /go/src/golang.zx2c4.com/wireguard \
&& make install
COPY entrypoint.sh /
WORKDIR /app
ENTRYPOINT [ "/entrypoint.sh" ]