1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-07 12:30:47 -07:00
moth/build/package/Containerfile
Neale Pickett 362ba11cf5 CI
2021-10-19 17:22:11 -06:00

28 lines
625 B
Docker

FROM golang:1 AS builder
COPY go.* /src/
COPY pkg /src/pkg/
COPY cmd /src/cmd/
COPY theme /target/theme/
COPY example-puzzles /target/puzzles/
COPY LICENSE.md /target/
RUN mkdir -p /target/state
WORKDIR /src/
RUN CGO_ENABLED=0 GOOS=linux go install -a -ldflags '-extldflags "-static"' ./...
# I can't use /target/bin: doing so would cause the devel server to overwrite Ubuntu's /bin
##########
FROM builder AS tester
RUN go test ./...
##########
FROM builder AS prodbuild
RUN mkdir -p /target/bin
RUN cp /go/bin/* /target/bin/
##########
FROM scratch AS moth
COPY --from=prodbuild /target /
ENTRYPOINT [ "/bin/mothd" ]