File size: 293 Bytes
94344c3 4781b13 8b385da 4781b13 2e32e90 4781b13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM python:3.11
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN chmod -R 777 /app
RUN pip install --no-cache-dir requests Flask aiohttp_wsgi huggingface_hub python-dotenv python-socketio aiohttp
EXPOSE 7860
CMD ["python", "app.py"] |