Spaces:
Running
Running
File size: 416 Bytes
b968577 20b4e7c b968577 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # 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"] |