Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Sverd
/
image_captioner
like
0
Runtime error
App
Files
Files
Community
1352a28
image_captioner
/
Dockerfile
Sverd
upload from local pc
1352a28
verified
12 months ago
raw
Copy download link
history
blame
Safe
177 Bytes
FROM
python:
3.10
WORKDIR
/app
ADD
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
8000
# Run main.py when the container launches
CMD
[
"python"
,
"main.py"
]