You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FreeDMR/docker-configs/Dockerfile-proxy

22 lines
679 B

FROM alpine
COPY entrypoint-proxy /entrypoint
RUN adduser -D -u 54000 radio && \
apk update && \
apk add git gcc musl-dev curl && \
cd /opt && \
curl https://downloads.python.org/pypy/pypy3.7-v7.3.5-linux64.tar.bz2 -o pypy.tar.bz2 && \
tar jxvf ./pypy.tar.bz2 && \
git clone https://github.com/hacknix/freedmr && \
cd /opt/freedmr && \
ls -la /opt/pypy* && \
/opt/pypy3.7-v7.3.5-linux64/bin/pypy3 -m ensurepip && \
/opt/pypy3.7-v7.3.5-linux64/bin/pypy3 -m pip install --no-cache-dir -r requirements.txt && \
apk del git gcc musl-dev && \
chown -R radio: /opt/freedmr
USER radio
ENTRYPOINT [ "/entrypoint" ]

Powered by TurnKey Linux.