RYSEN/docker-configs/Dockerfile-noproxy

18 lines
443 B
Plaintext
Raw Normal View History

2021-02-07 23:13:59 +00:00
FROM python:3.7-alpine
2021-02-10 11:52:51 +00:00
COPY entrypoint-noproxy /entrypoint
2021-02-07 23:13:59 +00:00
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" ]