From 887f6b373944e6db9cf9f27b8c07bbbd674df309 Mon Sep 17 00:00:00 2001 From: ZKWolf Date: Mon, 17 Jul 2023 19:14:41 +0200 Subject: [PATCH] Upgraded docker image and auto upgrade pip. --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5fc1850..4602028 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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