Spaces:
Running
Running
File size: 237 Bytes
2e20db1 97cae42 0d9e780 36344b2 1489940 0d9e780 644149b 74820e1 1489940 8b8863d 9894974 1489940 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.10-slim
WORKDIR /app
ENV HOME=/tmp/home
ENV USER=user
ENV PYTHONUNBUFFERED=1
RUN mkdir -p /tmp/home
RUN pip install --no-cache-dir gradio numpy huggingface_hub plotly
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]
|