Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
nishant0708 committed Dec 1, 2024
1 parent 944b449 commit 5de1759
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Use a full Python image as the base (instead of slim)
# Base image
FROM python:3.9

# Set the working directory inside the container
WORKDIR /app

# Install system dependencies for OpenCV and other tools (pyaudio dependencies removed)
# Install system dependencies for sounddevice and other tools
RUN apt-get update && apt-get install -y \
portaudio19-dev \
libasound2-dev \
libjack-dev \
curl \
libsm6 \
libxext6 \
libgl1-mesa-glx \
build-essential \
&& rm -rf /var/lib/apt/lists/* # Clean up apt cache to reduce image size

Expand Down

0 comments on commit 5de1759

Please sign in to comment.