initial upload

This commit is contained in:
2023-06-19 10:07:12 +02:00
parent 4c51c600fc
commit 9305e79243
9 changed files with 284 additions and 3 deletions

25
build/aprsc/Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
FROM debian:bullseye-slim
RUN apt-get update && \
apt-get install -y build-essential \
debhelper \
libc6 \
zlib1g \
adduser \
libcap2-bin \
libwww-perl \
libjson-xs-perl \
libevent-dev \
libevent-2.1-7 \
libssl-dev libcap-dev libz-dev libsctp-dev \
git \
lsb-release
RUN git clone https://github.com/hessu/aprsc && \
cd aprsc/src && \
./configure && \
make make-deb && \
cd .. && \
apt-get install ./*.deb
CMD service aprsc start && tail -F /opt/aprsc/logs/aprsc.log