Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
MilaNLProc
/
wordify
like
3
Build error
App
Files
Files
Community
13c6837
wordify
/
Dockerfile
Pietro Lesci
dockerize app
fca717d
almost 3 years ago
raw
Copy download link
history
blame
Safe
175 Bytes
FROM
python:3.7
COPY . /var/app/
WORKDIR /var/app
RUN
pip install --upgrade pip
RUN
pip install
streamlit
==1.0
RUN
pip install -r requirements.txt
CMD streamlit
run
./app.py