chirpstack/api/Dockerfile-grpc-web

13 lines
417 B
Plaintext
Raw Normal View History

FROM node:19
2022-04-06 20:18:32 +00:00
ENV PROJECT_PATH=/chirpstack/api
RUN apt update && apt install -y protobuf-compiler libprotobuf-dev git bash
2022-04-06 20:18:32 +00:00
RUN git clone https://github.com/googleapis/googleapis.git /googleapis
ADD https://github.com/grpc/grpc-web/releases/download/1.4.2/protoc-gen-grpc-web-1.4.2-linux-x86_64 /usr/bin/protoc-gen-grpc-web
2022-04-06 20:18:32 +00:00
RUN chmod +x /usr/bin/protoc-gen-grpc-web
RUN mkdir -p $PROJECT_PATH
WORKDIR $PROJECT_PATH