finger / Dockerfile
huzey's picture
git
6c0f0be
FROM tensorflow/tensorflow:latest-gpu
# FROM mediapipegpu
WORKDIR /app
COPY requirements.txt .
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 libespeak1 -y
RUN pip install -r requirements.txt
RUN apt-get install git -y
COPY . .
CMD ["bash", "run.sh"]