File size: 724 Bytes
c2bb5f2
56862ad
7e0418a
d1c2864
 
3de15ee
d1c2864
7e0418a
c2bb5f2
 
f26838b
 
72d1130
f26838b
 
 
 
 
 
 
c2bb5f2
7e0418a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM python:3.11
WORKDIR /code

# Create necessary directories with correct permissions
RUN mkdir -p /.cache && chmod 777 /.cache
RUN mkdir -p ./whisper/ && chmod 777 ./whisper/

# 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 /code/
COPY ./macros.py /code/
COPY ./sql_app.db /code/
COPY ./utils /code/utils/
COPY ./modules /code/modules/
COPY ./models /code/models/
COPY ./data /code/data/
COPY ./prompts /code/prompts/
COPY ./customs /code/customs/
COPY ./main.py /code/

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