Spaces:
Runtime error
Runtime error
FROM python:3.8 | |
# Установка зависимостей | |
RUN apt-get update && apt-get install -y git git-lfs ffmpeg libsm6 libxext6 cmake libgl1-mesa-glx | |
# Копирование кода приложения | |
COPY . /app | |
# Установка зависимостей Python | |
WORKDIR /app | |
RUN pip install -U pip | |
RUN pip install streamlit==1.23.1 torch==1.8.1 numpy==1.23.5 pandas==1.5.3 transformers==4.30.0 | |
# Запуск приложения | |
CMD ["streamlit", "run", "stri.py"] |