Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
patrawtf/shopify_csv_qa
Ganesh43
/
Retail_test_space
like
0
Sleeping
App
Files
Files
Community
a3cb6eb
Retail_test_space
/
Dockerfile
patrawtf
Create Dockerfile
ae6aace
over 1 year ago
raw
Copy download link
history
blame
Safe
183 Bytes
FROM
python:
3.7
-slim
WORKDIR
/usr/src/tapas
COPY
requirements.txt ./
RUN
pip install -r requirements.txt \
&&
rm
-rf /root/.cache/pip
COPY
. .
ENTRYPOINT
[
"python"
,
"app.py"
]