Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Anuj-Panthri
/
Poll_App
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bcd8b45
Poll_App
/
Dockerfile
Anuj-Panthri
dockerfile
283049f
almost 3 years ago
raw
Copy download link
history
blame
211 Bytes
FROM
python:
3.7
-alpine
EXPOSE
8000
WORKDIR
/app
COPY
requirements.txt /app
RUN
pip3 install -r requirements.txt --no-cache-dir
COPY
. /app
ENTRYPOINT
[
"python3"
]
CMD
[
"manage.py"
,
"runserver"
,
"0.0.0.0:8000"
]