Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
civichacker
/
speechcast
like
0
Sleeping
App
Files
Files
main
speechcast
/
Dockerfile
jcockhren
fixup entrypoint
f02839a
verified
12 months 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"
]