BubbleGuard_Audio / Dockerfile
MetiMiester's picture
Create Dockerfile
d51bf30 verified
raw
history blame
273 Bytes
# Use a slim Python base
FROM python:3.10-slim
WORKDIR /app
# Copy all files into the container
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose Gradio port
EXPOSE 7860
# Launch the Gradio app
CMD ["python", "app.py"]