mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-19 13:17:55 +00:00
10 lines
245 B
Plaintext
Vendored
10 lines
245 B
Plaintext
Vendored
FROM node:19
|
|
|
|
ENV PROJECT_PATH=/chirpstack/api
|
|
RUN apt update && apt install -y protobuf-compiler libprotobuf-dev git bash
|
|
|
|
RUN git clone https://github.com/googleapis/googleapis.git /googleapis
|
|
|
|
RUN mkdir -p $PROJECT_PATH
|
|
WORKDIR $PROJECT_PATH
|