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.
11 lines
210 B
Docker
11 lines
210 B
Docker
5 years ago
|
FROM golang:1.13-alpine AS build
|
||
|
WORKDIR /go/src/github.com/org/repo
|
||
|
COPY . .
|
||
|
|
||
|
RUN go build -o server .
|
||
|
|
||
|
FROM alpine:3.7
|
||
|
EXPOSE 8000
|
||
|
COPY --from=build /go/src/github.com/org/repo/server /server
|
||
|
CMD ["/server"]
|