File size: 487 Bytes
e310d7f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"]