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...
c4f4fe1
pycookie
/
Dockerfile
jokyone
Create Dockerfile
3c2bc94
verified
10 months ago
raw
Copy download link
history
blame
Safe
182 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
CMD [
"python"
,
"app.py"
]