File size: 463 Bytes
c2bb5f2
40d6398
7e0418a
 
c2bb5f2
 
40d6398
 
 
 
 
 
 
 
 
c2bb5f2
7e0418a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.11
WORKDIR /

# Copy the requirements file and install dependencies
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./s2smodels.py /
COPY ./macros.py /
COPY ./utils /
COPY ./modules /
COPY ./models / 
COPY ./data / 
COPY ./prompts /
COPY ./customs /
COPY ./main.py /

# Specify the command to run the application
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]