2021-01-22 08:14:48 -05:00
|
|
|
FROM python:3.7-alpine
|
2019-04-13 13:59:03 -04:00
|
|
|
|
2021-01-17 16:01:33 -05:00
|
|
|
COPY entrypoint /entrypoint
|
|
|
|
|
2021-01-22 08:14:48 -05:00
|
|
|
RUN adduser -D -u 54000 radio && \
|
|
|
|
apk update && \
|
|
|
|
apk add git gcc musl-dev && \
|
2021-01-21 14:51:04 -05:00
|
|
|
cd /opt && \
|
|
|
|
git clone https://github.com/hacknix/freedmr && \
|
2021-01-22 08:14:48 -05:00
|
|
|
cd /opt/freedmr && \
|
2021-01-21 14:51:04 -05:00
|
|
|
pip install --no-cache-dir -r requirements.txt && \
|
2021-01-22 08:14:48 -05:00
|
|
|
apk del git gcc musl-dev && \
|
2021-01-21 14:51:04 -05:00
|
|
|
chown -R radio: /opt/freedmr
|
2021-01-17 16:01:33 -05:00
|
|
|
|
2021-01-21 14:51:04 -05:00
|
|
|
USER radio
|
|
|
|
|
2019-04-13 13:59:03 -04:00
|
|
|
ENTRYPOINT [ "/entrypoint" ]
|