muyu-apiserver/deploy/Dockerfile.gateway
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
204 B
Docker

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