From 655484b1ef7d3be7feb5b0edf3809e153f358f83 Mon Sep 17 00:00:00 2001 From: terrydavis Date: Thu, 22 Feb 2024 19:12:10 +0100 Subject: [PATCH] update python to 3.8 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e26cc1..2d6843e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7 +FROM python:3.8 WORKDIR /app COPY requirements.txt . @@ -7,4 +7,4 @@ RUN pip install -r requirements.txt COPY . . EXPOSE 1337 -CMD ["hypercorn", "--access-logfile", "-", "--workers", "1", "--bind", "0.0.0.0:1337", "asgi:app"] \ No newline at end of file +CMD ["hypercorn", "--access-logfile", "-", "--workers", "1", "--bind", "0.0.0.0:1337", "asgi:app"]