feat:完成功能

This commit is contained in:
2025-06-17 11:17:17 +08:00
commit 17a926b4bb
9 changed files with 803 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
# 使用更小的基础镜像运行
FROM alpine:latest
WORKDIR /app
COPY order-producer .
ENV KAFKA_BROKERS=localhost:9092
ENTRYPOINT ["./order-producer"]