2021-07-05 20:12:19 -04:00
|
|
|
aplFROM python:3.7-alpine
|
2021-06-27 20:26:58 -04:00
|
|
|
|
|
|
|
COPY entrypoint-proxy /entrypoint
|
|
|
|
|
|
|
|
RUN adduser -D -u 54001 hbmon && \
|
|
|
|
apk update && \
|
2021-06-27 20:31:49 -04:00
|
|
|
apk add git gcc musl-dev libffi-dev libssl-dev cargo && \
|
2021-06-27 20:26:58 -04:00
|
|
|
cd /opt && \
|
|
|
|
git clone https://github.com/sp2ong/HBMonv2.git && \
|
|
|
|
cd /opt/HBmonv2 && \
|
|
|
|
pip install --no-cache-dir -r requirements.txt && \
|
|
|
|
apk del git gcc musl-dev && \
|
|
|
|
chown -R radio: /opt/HBMonv2
|
|
|
|
|
|
|
|
USER hbmon
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/entrypoint" ]
|