muyu-apiserver/deploy/Dockerfile.inventory
Chever John 71a2d912e2 feat: initial commit for muyu-apiserver
Go service with gateway, RPC, model layers and k8s deploy configs.

Made-with: Cursor
2026-02-28 15:29:16 +08:00

8 lines
214 B
Docker

FROM alpine:3.19
RUN apk add --no-cache ca-certificates tzdata
WORKDIR /app
COPY deploy/bin/inventory .
COPY deploy/etc/inventory.yaml etc/inventory.yaml
EXPOSE 9002
CMD ["./inventory", "-f", "etc/inventory.yaml"]