linsoning/Posture_Evaluation_App
0
1FROM python:3.102 3# Update the system and install 4RUN apt-get update && apt-get install -y \5 #For like the audio playing6 ffmpeg \ 7 # The next 2 are apparently used in OpenCV8 libsm6 \9 libxext6 10# Set the folder where I'll install everything11WORKDIR /app12# Copy the list of required Python packages to the container13COPY requirements.txt .14# Install the Python dependencies in requirements.txt15RUN pip install --no-cache-dir -r requirements.txt16# Copy my Python app17COPY app.py .18# Run the app19CMD ["python", "app.py"]20 