Compare commits

...

2 Commits

Author SHA1 Message Date
M0VUB de42de5245
Update Dockerfile
Fix bug in Dockerfile
2023-05-25 18:46:36 +01:00
M0VUB 236858ca11
Update Dockerfile
Bump up python version and force pip to use latest release
2023-05-25 18:45:54 +01:00
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 && \