File size: 215 Bytes
9d7ea7b
0e968fe
 
 
 
 
 
 
9d7ea7b
0e968fe
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:latest

WORKDIR /code

COPY . .

RUN ./pup py3.11

# EXPOSE 7860
# CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]

CMD ["python3", "-m", "http.server", "7860", "--directory", "."]