diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3ccf695 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM python:3.10-alpine + +COPY entrypoint-proxy /entrypoint + +RUN adduser -D -u 54001 hbmon && \ + apk update && \ + apk add git gcc musl-dev libffi-dev libssl-dev cargo && \ + cd /opt && \ + git clone https://github.com/ShaYmez/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" ]