Skip to content

Commit 3382b39

Browse files
committed
updated
1 parent 089dd9c commit 3382b39

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Encoder_Eval/dockerfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM pytorch/pytorch:2.7.0-cuda11.8-cudnn9-runtime
2+
3+
# Set up environment variables (optional, but often recommended)
4+
ENV DEBIAN_FRONTEND=noninteractive
5+
6+
# Install Python packages
7+
RUN pip install --no-cache-dir --extra-index-url https://pypi.nvidia.com --upgrade nvidia-dali-cuda110 \
8+
&& pip install --no-cache-dir decord==0.6.0 \
9+
&& pip install --no-cache-dir timm \
10+
&& pip install --no-cache-dir transformers==4.52.4
11+
12+
# (Optional) Set working directory
13+
WORKDIR /workspace
14+
15+
# (Optional) Copy your code into the container
16+
# COPY . /workspace
17+
18+
# (Optional) Set entrypoint or CMD
19+
# CMD ["python", "your_script.py"]

0 commit comments

Comments
 (0)