File size: 300 Bytes
d2321c0
b5d810e
 
 
e92559b
 
b5d810e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

WORKDIR /app

RUN chmod -R 777 /app


COPY backend /app/backend
COPY frontend /app/frontend


COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt


COPY start.sh /app/start.sh
RUN chmod +x /app/start.sh

EXPOSE 7860

CMD ["/app/start.sh"]