Skip to content

Commit

Permalink
fixed requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Taylor committed Apr 3, 2024
1 parent 70d3dce commit a359203
Showing 1 changed file with 5 additions and 30 deletions.
35 changes: 5 additions & 30 deletions examples/daily-oci/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,30 +1,5 @@
#FROM runpod/pytorch:2.2.0-py3.10-cuda12.1.1-devel-ubuntu22.04
#runpod/pytorch:2.2.0-py3.10-cuda12.1.1-devel-ubuntu22.04
#pytorch/pytorch:2.2.1-cuda12.1-cudnn8-devel
#nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04

ARG DEBIAN_FRONTEND=noninteractive
ARG USE_PERSISTENT_DATA
ENV PYTHONUNBUFFERED=1

RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential \
python3-pip \
python3-dev \
git \
ffmpeg \
google-perftools \
ca-certificates curl gnupg \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

# Install Python dependencies (Worker Template)
COPY requirements.txt /requirements.txt
RUN python3 -m pip install --upgrade pip && \
python3 -m pip install --upgrade -r /requirements.txt --no-cache-dir && \
rm /requirements.txt

ADD app.py .

ENV LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4

CMD python3 app.py
dailyai
asyncio
aiohttp
dotenv
requests

0 comments on commit a359203

Please sign in to comment.