mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-27 00:31:08 +00:00
9 lines
167 B
Plaintext
9 lines
167 B
Plaintext
|
FROM alpine:3.15.0
|
||
|
|
||
|
ENV PROJECT_PATH=/chirpstack/ui
|
||
|
|
||
|
RUN apk add --no-cache make git bash build-base nodejs npm yarn
|
||
|
|
||
|
RUN mkdir -p $PROJECT_PATH
|
||
|
WORKDIR $PROJECT_PATH
|