moth/Dockerfile.moth

15 lines
363 B
Docker
Raw Permalink Normal View History

FROM golang:1.12.0-alpine AS builder
2019-12-16 16:28:52 -07:00
RUN apk add --no-cache git gcc musl-dev
COPY src /go/src/github.com/dirtbags/moth/src
WORKDIR /go/src/github.com/dirtbags/moth/src
2019-12-16 16:28:52 -07:00
RUN go get .
2019-12-16 16:28:52 -07:00
RUN CGO_ENABLED=1 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o /mothd *.go
2018-09-19 18:18:04 -06:00
FROM scratch
2018-09-19 18:18:04 -06:00
COPY --from=builder /mothd /mothd
COPY theme /theme
2018-09-19 18:18:04 -06:00
ENTRYPOINT [ "/mothd" ]