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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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 && \