switch to python 3.9 because filprofiler does not support 3.10 and

is needed for memory profiling
debug
Simon 3 years ago
parent 374908f601
commit 5da7b823e1

@ -15,7 +15,9 @@
# along with this program; if not, write to the Free Software Foundation,
# 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" ]
@ -27,7 +29,7 @@ RUN adduser -D -u 54000 radio && \
cd /opt/freedmr && \
git checkout debug && \
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 && \
chown -R radio: /opt/freedmr

Loading…
Cancel
Save

Powered by TurnKey Linux.