mirror of https://github.com/dirtbags/moth.git
11 lines
320 B
Docker
11 lines
320 B
Docker
FROM golang:1.12.0-alpine AS builder
|
|
COPY src /go/src/github.com/dirtbags/moth/src
|
|
WORKDIR /go/src/github.com/dirtbags/moth/src
|
|
RUN go get .
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o /mothd *.go
|
|
|
|
FROM scratch
|
|
COPY --from=builder /mothd /mothd
|
|
COPY theme /theme
|
|
ENTRYPOINT [ "/mothd" ]
|