diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..56ed864 --- /dev/null +++ b/Containerfile @@ -0,0 +1,8 @@ +FROM golang:1.23-alpine AS builder + +COPY / /src +RUN cd /src && go build ./cmd/tokidoki + +FROM scratch +COPY --from=builder /src/cmd/tokidoki/tokidoki /tokidoki +ENTRYPOINT ["/tokidoki"]