From 3a9907abed195065cacb74d6b567747e26d34bd9 Mon Sep 17 00:00:00 2001 From: seth Date: Mon, 9 Jan 2023 23:57:19 -0500 Subject: fix: make docker file work --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f424f3f..82b7a22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ -FROM python:3.9 +FROM python:3.11 WORKDIR /code RUN pip install flit +COPY . /code/ RUN flit install CMD [ "uvicorn", "src.guzzle_api.api:app", "--host", "0.0.0.0", "--port", "7070"] -- cgit v1.2.3