deployment problems ;(

This commit is contained in:
2020-10-14 23:11:00 -04:00
parent 76e01fce2e
commit 0a10b2a076
3 changed files with 7 additions and 6 deletions
+3 -2
View File
@@ -2,8 +2,9 @@ FROM python:3.8
ADD . /root/
WORKDIR /root
WORKDIR /root/
RUN pip install -r requirements.txt
CMD [ "gunicorn", "--chdir", "src", "app:app"]
CMD [ "gunicorn", "-b", "0.0.0.0:25565", "src.app:app" ]