groq-voicechat-demo / Dockerfile
willsh1997's picture
:wrench: downgrade python ver to 3.11
20b4e7c
Raw
History Blame
416 Bytes
# 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"]