RYSEN/docker-configs/Dockerfile-proxy

18 lines
441 B
Plaintext
Raw Normal View History

2021-08-22 20:33:22 -04:00
FROM python:3.9-alpine
2021-02-07 18:13:59 -05:00
2021-05-02 17:22:50 -04:00
COPY entrypoint-proxy /entrypoint
2021-02-07 18:13:59 -05: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" ]