lainchan-proxy / Dockerfile
lain-iwakura's picture
Update Dockerfile
0e02297
raw history blame
No virus
222 Bytes
from python:3.10
workdir /app
copy requirements.txt .
run pip install -r requirements.txt
run mkdir /.cache && chmod 777 /.cache
run mkdir .chroma && chmod 777 .chroma
copy . .
expose 7860
cmd ["python", "fallback.py"]