|
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime |
|
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive |
|
ENV PYTHONUNBUFFERED=1 |
|
ENV HF_HOME=/app/.cache/huggingface |
|
ENV TRANSFORMERS_CACHE=/app/.cache/huggingface/transformers |
|
ENV MPLCONFIGDIR=/tmp/matplotlib |
|
ENV PYTORCH_CUDA_ALLOC_CONF=max_split_size_mb:128 |
|
|
|
|
|
RUN mkdir -p /app/.cache/huggingface/transformers && \ |
|
mkdir -p /tmp/matplotlib && \ |
|
chmod -R 777 /app && \ |
|
chmod -R 777 /tmp/matplotlib |
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \ |
|
build-essential \ |
|
git \ |
|
curl \ |
|
ca-certificates \ |
|
python3-pip \ |
|
python3-dev \ |
|
python3-setuptools \ |
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
|
|
WORKDIR /app |
|
|
|
|
|
RUN echo '#!/bin/bash \n\ |
|
echo "Checking NVIDIA GPU status..." \n\ |
|
if ! command -v nvidia-smi &> /dev/null; then \n\ |
|
echo "WARNING: nvidia-smi command not found. NVIDIA driver might not be installed." \n\ |
|
else \n\ |
|
echo "NVIDIA driver found. Running nvidia-smi:" \n\ |
|
nvidia-smi \n\ |
|
fi \n\ |
|
echo "Environment variables for GPU:" \n\ |
|
echo "CUDA_VISIBLE_DEVICES=${CUDA_VISIBLE_DEVICES}" \n\ |
|
echo "NVIDIA_VISIBLE_DEVICES=${NVIDIA_VISIBLE_DEVICES}" \n\ |
|
exec "$@"' > /entrypoint.sh && \ |
|
chmod +x /entrypoint.sh |
|
|
|
|
|
COPY requirements.txt ./requirements.txt |
|
|
|
|
|
RUN pip3 install --no-cache-dir --upgrade pip && \ |
|
|
|
pip3 install --no-cache-dir torch==2.0.1 torchvision==0.15.2 && \ |
|
|
|
pip3 install --no-cache-dir -r requirements.txt |
|
|
|
|
|
COPY app.py ./app.py |
|
|
|
|
|
RUN mkdir -p /app/example_images |
|
|
|
|
|
|
|
|
|
|
|
RUN mkdir -p .cache/huggingface/transformers && \ |
|
chmod -R 777 .cache && \ |
|
chmod -R 777 example_images |
|
|
|
|
|
EXPOSE 7860 |
|
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |
|
|
|
|
|
CMD ["python3", "app.py"] |