update python to 3.8

pull/21/head
terrydavis 3 months ago
parent 1c1cd62454
commit 655484b1ef

@ -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"]
CMD ["hypercorn", "--access-logfile", "-", "--workers", "1", "--bind", "0.0.0.0:1337", "asgi:app"]

Loading…
Cancel
Save