# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker # you will also find guides on how best to write your Dockerfile FROM python:3.9 # Set up a new user named "user" with user ID 1000 RUN useradd -m -u 1000 user # Switch to the "user" user USER user # Set home to the user's home directory ENV HOME=/home/user \ PATH=/home/user/.local/bin:$PATH # Set the working directory to the user's home directory WORKDIR $HOME/app COPY --chown=user . $HOME/app #COPY audio.wav ./$HOME/app #COPY requirements.txt requirements.txt #COPY create_test_audio.py . #COPY generate_test_audio.py . #COPY mcp_speech_client.py . #COPY mcp_speech_service.py . #COPY requirements.txt . #COPY startup_script.py . #COPY testClient.py . #COPY whisper_http_wrapper.py . RUN pip install --no-cache-dir --upgrade -r requirements.txt EXPOSE 7860 CMD ["python", "startup_script.py"] #CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]