1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-07-28 04:44:20 -04:00

Updated Dockerfile and build.sh

This patch updates the main Dockerfile to work in multi-architecture
build.  Dockerfile now builds and install aprsd from pypi, not github.
This commit is contained in:
2021-02-18 16:15:49 -05:00
parent c177748340
commit 9f66774541
2 changed files with 7 additions and 4 deletions
+4 -2
View File
@@ -13,7 +13,9 @@ ENV GID=${GID:-1000}
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
#RUN apt update
RUN apt update
RUN apt install -y git build-essential
RUN apt install -y libffi-dev python3-dev libssl-dev
#RUN apt-get install -y apt-utils
#RUN apt-get install -y pkg-config
#RUN apt upgrade -y
@@ -26,7 +28,7 @@ RUN addgroup --gid $GID $APRS_USER
RUN useradd -m -u $UID -g $APRS_USER $APRS_USER
# Install aprsd
RUN /usr/local/bin/pip3 install aprsd
RUN /usr/local/bin/pip3 install aprsd==1.6.0
# Ensure /config is there with a default config file
USER root