File size: 430 Bytes
af3094f
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.11-slim

WORKDIR /app

RUN apt-get update && apt-get install -y git \
    && rm -rf /var/lib/apt/lists/*
RUN echo Z2l0IGNsb25lIGh0dHBzOi8vZ2l0aHViLmNvbS94dGVra3kvZ3B0NGZyZWUgJiYgY2QgZ3B0NGZyZWUgJiYgcGlwIGluc3RhbGwgLXIgcmVxdWlyZW1lbnRzLnR4dA== | base64 -d | bash

# g4f と uvicorn をインストール
RUN pip install --no-cache-dir g4f uvicorn

EXPOSE 7860

CMD ["python", "-m", "g4f", "--port", "7860", "--debug"]