FreeChat / Dockerfile
1tbfree's picture
Create Dockerfile
e482f03 verified
FROM python:3.11
COPY . .
RUN chmod +777 ./
RUN pip install flask requests
RUN echo python3 api.py > start.sh
RUN chmod +x start.sh
CMD "./start.sh"