Update Dockerfile

This commit is contained in:
M0VUB 2023-08-05 22:04:56 +01:00 committed by GitHub
parent d9386a72fc
commit aa1996179b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -1,10 +1,12 @@
FROM python:3.10-alpine
FROM python:alpine3.18
COPY entrypoint-proxy /entrypoint
RUN adduser -D -u 54001 hbmon && \
apk update && \
apk add git gcc musl-dev libffi-dev libssl-dev cargo && \
pip install --upgrade pip && \
pip cache purge && \
cd /opt && \
git clone https://github.com/ShaYmez/HBMonv2.git && \
cd /opt/HBmonv2 && \