0xmoose/agent-diary-cache
0
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 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