Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
patrawtf
/
shopify_csv_qa
like
11
Running
App
Files
Files
Community
1
52eb2e9
shopify_csv_qa
/
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"
]