This commit is contained in:
Bel LaPointe
2025-10-06 07:21:05 -06:00
parent 3c60633723
commit a17676472b
3 changed files with 44 additions and 0 deletions

11
srv/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM golang:1.23.9-alpine3.21 as builder
COPY ./ /go/src/25-bday-qt
WORKDIR /go/src/25-bday-qt
RUN cd ./srv; go build -o /go/bin/25-bday-qt
FROM alpine:3.18.4
COPY --from=builder /go/bin/25-bday-qt /bin/
CMD []
ENTRYPOINT ["/bin/25-bday-qt"]