From 236858ca1107e5961473f7423a913e324e401f30 Mon Sep 17 00:00:00 2001 From: M0VUB <76499782+ShaYmez@users.noreply.github.com> Date: Thu, 25 May 2023 18:45:54 +0100 Subject: [PATCH] Update Dockerfile Bump up python version and force pip to use latest release --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4a4e174..0e8aeb8 100755 --- a/Dockerfile +++ b/Dockerfile @@ -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 && \