File size: 194 Bytes
da406d5
0a0a011
 
da406d5
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM pytorch/pytorch:latest
FROM nginxinc/nginx-unprivileged:alpine
COPY . /usr/share/nginx/html
WORKDIR /app

COPY . .

RUN pip install -r requirements.txt

CMD [ "streamlit", "run", "app.py" ]