Update Dockerfile

Bump up python version and force pip to use latest release
This commit is contained in:
M0VUB
2023-05-25 18:45:54 +01:00
committed by GitHub
parent 36c9b1b690
commit 236858ca11
+2 -1
View File
@@ -1,10 +1,11 @@
FROM python:alpine3.17
FROM python:alpine3.18
COPY entrypoint /entrypoint
RUN adduser -D -u 54000 radio && \
apk update && \
apk add git gcc musl-dev && \
pip install --upgrade pip
cd /opt && \
git clone https://github.com/ShaYmez/hblink3 && \
cd /opt/hblink3 && \