mirror of
https://github.com/fhmq/hmq.git
synced 2026-04-22 09:48:33 +00:00
13 lines
263 B
Docker
13 lines
263 B
Docker
FROM golang:1.18 as builder
|
|
WORKDIR /go/src/github.com/fhmq/hmq
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 go build -o hmq -a -ldflags '-extldflags "-static"' .
|
|
|
|
|
|
FROM alpine:3.17.3
|
|
WORKDIR /
|
|
COPY --from=builder /go/src/github.com/fhmq/hmq/hmq .
|
|
EXPOSE 1883
|
|
|
|
ENTRYPOINT ["/hmq"]
|