Docker proxy and noproxy

This commit is contained in:
Simon 2021-02-10 11:52:51 +00:00
parent fb45584aab
commit 78ef1bbef2
4 changed files with 23 additions and 2 deletions

View File

@ -0,0 +1,17 @@
FROM python:3.7-alpine
COPY entrypoint-noproxy /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 /entrypoint
COPY entrypoint-proxy /entrypoint
RUN adduser -D -u 54000 radio && \
apk update && \

View File

@ -0,0 +1,4 @@
#!/bin/sh
cd /opt/freedmr
python /opt/freedmr/bridge_master.py -c freedmr.cfg -r rules.py

View File

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