diff --git a/Dockerfile b/Dockerfile index 5f7106c..02e4415 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,4 @@ EXPOSE 8000 WORKDIR . COPY . . RUN apt-get -y update && apt-get -y install python3-pip && pip3 install -r requirements.txt -CMD ["python3", "main.py"] \ No newline at end of file +CMD ["uvicorn", "src:create_app", "--host=0.0.0.0", "--port=8000"] \ No newline at end of file