coomfinity / Dockerfile
Konnect1221's picture
Duplicate from Kaomoji/coomfinity
a8db41c
raw
history blame contribute delete
220 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", "server.py"]