mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-19 13:17:55 +00:00
10 lines
239 B
Plaintext
10 lines
239 B
Plaintext
|
FROM golang:1.18-alpine
|
||
|
|
||
|
ENV PROJECT_PATH=/chirpstack/api
|
||
|
RUN apk add --no-cache make git bash protobuf protobuf-dev
|
||
|
|
||
|
RUN git clone https://github.com/googleapis/googleapis.git /googleapis
|
||
|
|
||
|
RUN mkdir -p $PROJECT_PATH
|
||
|
WORKDIR $PROJECT_PATH
|