diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,6 +8,6 @@ RUN pip install -r requirements.txt COPY . . -EXPOSE 80 +EXPOSE 8000 -CMD ["fastapi", "run", "app/main.py", "--port", "80"]
\ No newline at end of file +CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0", "app.app:app"]
\ No newline at end of file |
