File size: 440 Bytes
e63103b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM python:3.12

COPY . ./app

WORKDIR /app

RUN pip install -r requirements.txt

# RUN python3 -m venv /app/.venv

# RUN source .venv/bin/activate
# RUN .venv/bin/activate

# ENV PATH="/.venv/bin:$PATH"

RUN pip install uvicorn
CMD ["uvicorn", "setup.asgi:application", "--host", "0.0.0.0", "--port", "7860"]

# ENTRYPOINT ["python", "manage.py", "runserver"]

# CMD ls /usr/lib/python3.12/site-packages/Lib/site-packages
# CMD pip freeze