restarter / Dockerfile
batanus's picture
Update Dockerfile
2bce9aa verified
raw
history blame contribute delete
117 Bytes
FROM python:3.9
WORKDIR /app
RUN pip install Flask huggingface-hub
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]