FROM python:3.11-slim RUN pip install --no-cache-dir aiohttp COPY static /app/static COPY server.py /app/server.py WORKDIR /app EXPOSE 7860 CMD ["python", "server.py"]