diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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"] |
