Echo in docker image

This commit is contained in:
Simon 2021-05-01 23:00:23 +01:00
parent cfc9165a1e
commit a957ae7d74
4 changed files with 2 additions and 24 deletions

View File

@ -1,17 +0,0 @@
FROM python:3.7-alpine
COPY entrypoint-echo /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" ]

View File

@ -1,6 +1,6 @@
FROM python:3.7-alpine
COPY entrypoint-proxy /entrypoint
COPY entrypoint-echo /entrypoint
RUN adduser -D -u 54000 radio && \
apk update && \

View File

@ -1,6 +0,0 @@
#!/bin/sh
cd /opt/freedmr
python /opt/freedmr/hotspot_proxy_v2.py &
python /opt/freedmr/playback.py -c loro.cfg &
python /opt/freedmr/bridge_master.py -c freedmr.cfg -r rules.py

View File

@ -2,4 +2,5 @@
cd /opt/freedmr
python /opt/freedmr/hotspot_proxy_v2.py &
python /opt/freedmr/playback.py -c loro.cfg &
python /opt/freedmr/bridge_master.py -c freedmr.cfg -r rules.py