CoolFace
Apppublic

0xmoose/agent-diary-cache

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.12-slim2 3WORKDIR /app4COPY requirements.txt .5RUN pip install --no-cache-dir -r requirements.txt6 7COPY app.py .8 9ENV HOST=0.0.0.010ENV PORT=786011 12CMD ["python", "app.py"]13