k / Dockerfile
reikernx's picture
Update Dockerfile
2e32e90 verified
Raw
History Blame Contribute Delete
293 Bytes
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"]