blob: e5d0235d28987092c6342ff835b7b5ba4f924e30 [file] [log] [blame]
# Copyright 2021 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
FROM golang:1.18 AS build
COPY go.mod /app/go.mod
COPY go.sum /app/go.sum
WORKDIR /app
RUN go mod download
COPY . /app
RUN go build golang.org/x/build/cmd/relui
ENTRYPOINT go test -v ./cmd/relui/... ./internal/relui/... ./internal/workflow/...