armbian-router/Dockerfile

11 lines
166 B
Docker
Raw Normal View History

2022-03-31 00:13:51 +00:00
FROM golang:alpine AS builder
ADD . /src
WORKDIR /src
RUN CGO_ENABLED=0 go build -o /src/dlrouter
FROM alpine
COPY --from=builder /src/dlrouter /usr/bin/dlrouter