2020-02-11 09:50:05 +08:00
|
|
|
# Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
|
2020-03-07 05:45:54 +08:00
|
|
|
FROM golang:1.13-alpine AS build-env
|
2020-02-11 09:50:05 +08:00
|
|
|
|
|
|
|
WORKDIR /go/src/tailscale
|
2020-02-15 05:31:14 +08:00
|
|
|
|
|
|
|
COPY go.mod .
|
|
|
|
COPY go.sum .
|
|
|
|
RUN go mod download
|
|
|
|
|
2020-02-11 09:50:05 +08:00
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN go install -v ./cmd/...
|
|
|
|
|
|
|
|
FROM alpine:3.11
|
2020-02-19 03:05:24 +08:00
|
|
|
RUN apk add --no-cache ca-certificates iptables
|
2020-02-15 05:31:14 +08:00
|
|
|
COPY --from=build-env /go/bin/* /usr/local/bin/
|