Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
civichacker
/
speechcast
like
0
Sleeping
App
Files
Files
Fetching metadata from the HF Docker repository...
main
speechcast
/
Dockerfile
jcockhren
fixup entrypoint
f02839a
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
182 Bytes
FROM
python:
3.10
.
12
-slim-bookworm
RUN
python -m pip install pipenv
COPY
Pipfile .
COPY
Pipfile.lock .
COPY
*.py .
RUN
pipenv install --system --deploy
CMD
[
"python"
,
"app.py"
]