File size: 365 Bytes
bb98a44
0c5bfb2
 
 
 
7f65ca7
 
9f839e0
 
 
 
bb98a44
0c5bfb2
bb98a44
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.11-slim
RUN pwd
WORKDIR $HOME/app
COPY . .
RUN mkdir -p /.cache && chmod -R 777 /.cache
RUN pwd
RUN ls
RUN pip install setuptools_scm
RUN pip install --upgrade wheel
RUN pip install wavedrom --no-build-isolation
# RUN pip install wavedrom==2.0.3.post3
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]