mknolan's picture
Upload Dockerfile
935a93f verified
raw
history blame
547 Bytes
FROM nvidia/cuda:11.8.0-runtime-ubuntu22.04
# Install dependencies
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
git \
poppler-utils \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /app
# Copy the requirements file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the app code
COPY app.py .
# Set environment variables
ENV HF_HUB_DISABLE_SYMLINKS_WARNING=1
ENV PYTHONUNBUFFERED=1
# Run the app
CMD ["python3", "app.py"]