mlbench123's picture
Create Dockerfile
d5432f2 verified
raw
history blame
395 Bytes
FROM debian:bullseye
WORKDIR /app
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
git \
git-lfs \
ffmpeg \
libsm6 \
libxext6 \
cmake \
rsync \
libgl1-mesa-glx \
&& rm -rf /var/lib/apt/lists/* \
&& git lfs install
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python3", "app.py"]