nanee-animation / Dockerfile
ygauravyy's picture
Update Dockerfile
7a33ead verified
raw
history blame
1.87 kB
# syntax = docker/dockerfile:1.2
FROM continuumio/miniconda3:24.1.2-0
# install os dependencies
RUN mkdir -p /usr/share/man/man1
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
ca-certificates \
curl \
vim \
sudo \
default-jre \
git \
gcc \
build-essential \
wget \
&& rm -rf /var/lib/apt/lists/*
RUN conda install python=3.8.13 -y
# Install Python dependencies with pip
RUN pip install openmim
RUN pip install torch==2.0.0
RUN mim install mmcv-full==1.7.0
RUN pip install mmdet==2.27.0
RUN pip install torchserve
RUN pip install mmpose==0.29.0
RUN pip install torchvision==0.15.1
RUN pip install numpy==1.24.4
RUN pip install gradio
# **Add these additional dependencies:**
RUN pip install scikit-image scipy opencv-python requests pyyaml
# bugfix for xtcocoapi, an mmpose dependency
RUN git clone https://github.com/jin-s13/xtcocoapi.git
WORKDIR xtcocoapi
RUN pip install -r requirements.txt
RUN python setup.py install
WORKDIR /
# prep torchserve (optional)
RUN mkdir -p /home/torchserve/model-store
RUN wget https://github.com/facebookresearch/AnimatedDrawings/releases/download/v0.0.1/drawn_humanoid_detector.mar -P /home/torchserve/model-store/
RUN wget https://github.com/facebookresearch/AnimatedDrawings/releases/download/v0.0.1/drawn_humanoid_pose_estimator.mar -P /home/torchserve/model-store/
COPY config.properties /home/torchserve/config.properties
# Create a non-root user with UID 1000
RUN adduser --disabled-password --gecos '' --uid 1000 appuser
WORKDIR /app
COPY app.py /app
COPY examples /app/examples
# Pre-create directories needed by the app and Gradio, and set permissions
RUN mkdir -p uploads_gradio outputs_gradio flagged && \
chown -R appuser:appuser /app
USER appuser
# Expose the port for Gradio
EXPOSE 7860
CMD ["python", "app.py"]