From 42ec26dabb8303f1ecaff9c225c57d1ab19980b2 Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Sun, 25 Sep 2022 21:23:51 -0700 Subject: [PATCH] actually copy json --- Dockerfile.data_gateway | 2 ++ Dockerfile.hbnet | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Dockerfile.data_gateway b/Dockerfile.data_gateway index cf06fc1..ccf1310 100644 --- a/Dockerfile.data_gateway +++ b/Dockerfile.data_gateway @@ -21,6 +21,8 @@ COPY LICENSE.txt . COPY data_gateway.py . COPY data_gateway_local_commands.py . COPY docker/data_gateway/data_gateway.cfg ./config/ +COPY subscriber_ids.json . +copy peer_ids.json . #Install Python3.9 and dependencies RUN apt-get -y update; apt-get -y upgrade; apt-get -y install --no-install-recommends python3.9-dev python3-pip python3.9 build-essential net-tools iputils-ping wget; apt-get clean; rm -rf /var/lib/apt/lists/* diff --git a/Dockerfile.hbnet b/Dockerfile.hbnet index aa409f3..f3d5bc4 100644 --- a/Dockerfile.hbnet +++ b/Dockerfile.hbnet @@ -24,6 +24,8 @@ COPY data_gateway.py . COPY docker/hbnet/hbnet.cfg ./config/ COPY docker/hbnet/rules.py ./config/ COPY hotspot_proxy_v2.py . +COPY subscriber_ids.json . +copy peer_ids.json . #Install Python3.9 and dependencies RUN apt-get -y update; apt-get -y upgrade; apt-get -y install --no-install-recommends python3.9-dev python3-pip python3.9 build-essential net-tools iputils-ping wget; apt-get clean; rm -rf /var/lib/apt/lists/*