2021-09-20 14:38:02 -04:00
|
|
|
###############################################################################
|
|
|
|
# Copyright (C) 2020 Simon Adlem, G7RZU <g7rzu@gb7fr.org.uk>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
###############################################################################
|
2021-08-22 20:33:22 -04:00
|
|
|
FROM python:3.9-alpine
|
2021-02-07 18:13:59 -05:00
|
|
|
|
2021-05-02 17:22:50 -04:00
|
|
|
COPY entrypoint-proxy /entrypoint
|
2021-02-07 18:13:59 -05:00
|
|
|
|
|
|
|
RUN adduser -D -u 54000 radio && \
|
|
|
|
apk update && \
|
|
|
|
apk add git gcc musl-dev && \
|
|
|
|
cd /opt && \
|
2021-10-09 07:06:29 -04:00
|
|
|
git clone https://gitlab.hacknix.net/hacknix/FreeDMR.git && \
|
2021-02-07 18:13:59 -05:00
|
|
|
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" ]
|