Spaces:
Running
Running
| # Use your chosen base image | |
| FROM python:3.11 | |
| # Command to upgrade pip | |
| RUN pip install --upgrade pip | |
| # Copy your application code into the container | |
| COPY . /app | |
| # Set the working directory | |
| WORKDIR /app | |
| # (Optional) Install your application dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Define the command to run your application when the Space starts | |
| CMD ["python", "groq-voicechat-demo.py"] |