12 lines
328 B
Docker
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.' \
|
|
"]
|