aifr-demo-1806 / Dockerfile
mrtuandao's picture
Upload folder using huggingface_hub
0a4ffbd verified
# Base image -> https://github.com/runpod/containers/blob/main/official-templates/base/Dockerfile
# DockerHub -> https://hub.docker.com/r/runpod/base/tags
FROM runpod/base:0.4.0-cuda11.8.0
# The base image comes with many system dependencies pre-installed to help you get started quickly.
# Please refer to the base image's Dockerfile for more information before adding additional dependencies.
# IMPORTANT: The base image overrides the default huggingface cache location.
# --- Optional: System dependencies ---
COPY builder/setup.sh /setup.sh
RUN /bin/bash /setup.sh && \
rm /setup.sh
# Python dependencies
COPY builder/requirements.txt /requirements.txt
RUN python3.10 -m pip install -r /requirements.txt && \
rm /requirements.txt
# NOTE: The base image comes with multiple Python versions pre-installed.
# It is reccommended to specify the version of Python when running your code.
# Add src files (Worker Template)
ADD my_src/ .
# RUN python3.10 -u /helpers.py
CMD python3.10 -u /handler.py