2025-04-15 19:23:42 -04:00
|
|
|
FROM python:3.12-slim
|
2024-10-07 23:16:42 -04:00
|
|
|
WORKDIR /app
|
|
|
|
|
COPY ./src /app
|
|
|
|
|
COPY requirements.txt /app/requirements.txt
|
|
|
|
|
RUN pip install -r /app/requirements.txt
|
|
|
|
|
EXPOSE 7777
|
2025-04-15 19:23:42 -04:00
|
|
|
#CMD ["gunicorn", "wsgi:app", "--bind", "0.0.0.0:7777"]
|
|
|
|
|
CMD ["python", "start.py"]
|