This is a docker image for generating GRPC code in Golang
|-- Dockerfile # The main Dockerfile for the image
|-- docker_entrypoint.sh # The main script for generating the go files
|-- Makefile # The project Makefile
To build the docker image, run the following command:
make # or `make build`
To generate the go files, run the following command:
docker run -it --rm \
-v $(pwd)/proto:/proto \
-v $(pwd)/build:/build \
protoc-go-grpc:latest /proto /build