|
|
|
@ -15,7 +15,9 @@
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
###############################################################################
|
|
|
|
###############################################################################
|
|
|
|
FROM python:3.10-alpine
|
|
|
|
|
|
|
|
|
|
|
|
#Fil does not support 3.10 yet
|
|
|
|
|
|
|
|
FROM python:3.9-alpine
|
|
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/entrypoint" ]
|
|
|
|
ENTRYPOINT [ "/entrypoint" ]
|
|
|
|
|
|
|
|
|
|
|
|
@ -27,7 +29,7 @@ RUN adduser -D -u 54000 radio && \
|
|
|
|
cd /opt/freedmr && \
|
|
|
|
cd /opt/freedmr && \
|
|
|
|
git checkout debug && \
|
|
|
|
git checkout debug && \
|
|
|
|
pip install filprofiler && \
|
|
|
|
pip install filprofiler && \
|
|
|
|
pip install --no-cache-dir -r requirements.txt && \
|
|
|
|
pip install --no-cache-dir -r requirements.txt && \
|
|
|
|
apk del git gcc musl-dev && \
|
|
|
|
apk del git gcc musl-dev && \
|
|
|
|
chown -R radio: /opt/freedmr
|
|
|
|
chown -R radio: /opt/freedmr
|
|
|
|
|
|
|
|
|
|
|
|
|