Files
deploy/Dockerfile.proto-gen
2026-07-15 23:28:04 +08:00

12 lines
328 B
Docker

FROM bufbuild/buf:latest
WORKDIR /workspace/proto
ENTRYPOINT ["sh", "-c", "\
buf generate --template buf.gen.backend.yaml && \
buf generate --template buf.gen.collab-go.yaml && \
buf generate --template buf.gen.frontend.yaml && \
buf generate --template buf.gen.node.yaml && \
echo 'Proto generation complete.' \
"]