grim/cerestial

Add a README.md and the logo

18 months ago, Gary Kramlich
76f72cefca22
Add a README.md and the logo
FROM docker.io/golang:1.19-bullseye as build
WORKDIR /root
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static" -s' .
FROM scratch
COPY --from=build /root/cerestial /cerestial
CMD ["/cerestial"]