You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
242 B
Docker
12 lines
242 B
Docker
5 years ago
|
FROM golang:1.13 AS build
|
||
|
|
||
|
WORKDIR /compose/hello-docker
|
||
|
COPY main.go main.go
|
||
|
RUN CGO_ENABLED=0 go build -o backend main.go
|
||
|
|
||
|
FROM scratch
|
||
|
COPY --from=build /compose/hello-docker/backend /usr/local/bin/backend
|
||
|
CMD ["/usr/local/bin/backend"]
|
||
|
|
||
|
|