Upgraded docker image and auto upgrade pip.

This commit is contained in:
ZKWolf 2023-07-17 19:14:41 +02:00
parent 22064e3513
commit 887f6b3739

View File

@ -1,9 +1,12 @@
FROM python:3.10-alpine
FROM python:3.12.0b4-alpine3.18
COPY . /app
COPY requirements.txt /app/src
WORKDIR /app/src
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
RUN apk add curl