Files
matchbox/Dockerfile
dghubble-renovate[bot] 1bfa396851 Bump docker.io/golang image from 1.24.4 to v1.24.5 (#1448)
Co-authored-by: dghubble-renovate[bot] <119624128+dghubble-renovate[bot]@users.noreply.github.com>
2025-07-09 10:03:12 +00:00

14 lines
500 B
Docker

FROM docker.io/golang:1.24.5 AS builder
COPY . src
RUN cd src && make build
FROM docker.io/alpine:3.22.0
LABEL maintainer="Dalton Hubble <dghubble@gmail.com>"
LABEL org.opencontainers.image.title="Matchbox",
LABEL org.opencontainers.image.source="https://github.com/poseidon/matchbox"
LABEL org.opencontainers.image.documentation="https://matchbox.psdn.io"
LABEL org.opencontainers.image.vendor="Poseidon Labs"
COPY --from=builder /go/src/bin/matchbox /matchbox
EXPOSE 8080
ENTRYPOINT ["/matchbox"]