|Dpc
This commit is contained in:
parent
b7439278c3
commit
0e3718a96d
17
docker-configs/Dockerfile
Normal file
17
docker-configs/Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
FROM python:3.7-alpine
|
||||
|
||||
COPY entrypoint /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" ]
|
Loading…
Reference in New Issue
Block a user