muyu-apiserver/deploy/Dockerfile.inventory

8 lines
214 B
Docker
Raw Normal View History

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"]