HDStack docker

This commit is contained in:
Simon
2021-03-07 12:23:30 +00:00
parent 40963656f1
commit e41eb7bfc5
7 changed files with 467 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM python:3.7-alpine
COPY entrypoint-proxy /entrypoint
RUN adduser -D -u 54000 radio && \
apk update && \
apk add git gcc musl-dev && \
cd /opt && \
git clone https://github.com/hacknix/freedmr && \
cd /opt/freedmr && \
pip install --no-cache-dir -r requirements.txt && \
apk del git gcc musl-dev && \
chown -R radio: /opt/freedmr
USER radio
ENTRYPOINT [ "/entrypoint" ]