File size: 364 Bytes
460851a 9e2fb91 460851a 9e2fb91 460851a 9e2fb91 460851a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM pytorch/pytorch:2.4.0-cuda12.1-cudnn9-runtime
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu121
# Copy app files
COPY app.py .
COPY 3d_scene.html .
COPY three.min.js .
ENV PORT=7860
EXPOSE 7860
CMD ["python", "app.py"]
|