File size: 299 Bytes
68786bb
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.9.15
WORKDIR /app
COPY requirements.txt /app
RUN pip3 install  -i https://mirrors.aliyun.com/pypi/simple/  --trusted-host mirrors.aliyun.com  -r requirements.txt --no-cache-dir
COPY . /app
RUN mkdir /.cache
RUN chmod -R 777 /.cache
EXPOSE 8000
ENTRYPOINT ["python3"] 
CMD ["server.py"]