Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jokyone
/
pycookie
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f2379c2
pycookie
/
Dockerfile
jokyone
Update Dockerfile
f2379c2
verified
10 months ago
raw
Copy download link
history
blame
Safe
188 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt.
RUN
apt-get update && apt-get -y install libpq-dev gcc && pip install -r requirements.txt
COPY
app.py /app
CMD
[
"python"
,
"app.py"
]