2020-02-11 01:50:05 +00: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-06 21:45:54 +00:00
|
|
|
FROM golang:1.13-alpine AS build-env
|
2020-02-11 01:50:05 +00:00
|
|
|
|
|
|
|
WORKDIR /go/src/tailscale
|
2020-02-14 21:31:14 +00:00
|
|
|
|
|
|
|
COPY go.mod .
|
|
|
|
COPY go.sum .
|
|
|
|
RUN go mod download
|
|
|
|
|
2020-02-11 01:50:05 +00:00
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN go install -v ./cmd/...
|
|
|
|
|
|
|
|
FROM alpine:3.11
|
2020-02-18 19:05:24 +00:00
|
|
|
RUN apk add --no-cache ca-certificates iptables
|
2020-02-14 21:31:14 +00:00
|
|
|
COPY --from=build-env /go/bin/* /usr/local/bin/
|