mirror of
https://git.sr.ht/~sircmpwn/tokidoki
synced 2025-12-12 06:07:22 +01:00
8 lines
183 B
Docker
8 lines
183 B
Docker
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"]
|