CoolFace
Apppublic

der4ik/ic-light

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile15 linesDownload Raw Back to root
1FROM runpod/pytorch:2.2.1-py3.10-cuda12.1.1-devel-ubuntu22.042WORKDIR /content3ENV PATH="/home/camenduru/.local/bin:${PATH}"4RUN adduser --disabled-password --gecos '' camenduru && \5    adduser camenduru sudo && \6    echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers && \7    chown -R camenduru:camenduru /content && \8    chmod -R 777 /content && \9    chown -R camenduru:camenduru /home && \10    chmod -R 777 /home11COPY ./requirements.txt /content/requirements.txt12RUN pip install --no-cache-dir --upgrade -r /content/requirements.txt13COPY . .14USER camenduru15CMD python worker.py