CoolFace
Apppublic

linsoning/Posture_Evaluation_App

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
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