tezuesh commited on
Commit
c85b388
·
verified ·
1 Parent(s): a745c5d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -8
Dockerfile CHANGED
@@ -10,15 +10,15 @@ ENV DEBIAN_FRONTEND=noninteractive \
10
  NVIDIA_VISIBLE_DEVICES=all \
11
  NVIDIA_DRIVER_CAPABILITIES=compute,utility
12
 
13
- # System dependencies with explicit version control
14
  RUN apt-get update && apt-get install -y --no-install-recommends \
15
- build-essential=12.9ubuntu3 \
16
- python3-dev=3.10.6-1~22.04 \
17
- python3-pip=22.0.2+dfsg-1ubuntu0.4 \
18
- git=1:2.34.1-1ubuntu1.10 \
19
- ffmpeg=7:4.4.2-0ubuntu0.22.04.1 \
20
- libsndfile1=1.0.31-2ubuntu0.1 \
21
- curl=7.81.0-1ubuntu1.15 \
22
  && apt-get clean \
23
  && rm -rf /var/lib/apt/lists/*
24
 
 
10
  NVIDIA_VISIBLE_DEVICES=all \
11
  NVIDIA_DRIVER_CAPABILITIES=compute,utility
12
 
13
+ # System dependencies - removed version pinning for base packages
14
  RUN apt-get update && apt-get install -y --no-install-recommends \
15
+ build-essential \
16
+ python3-dev \
17
+ python3-pip \
18
+ git \
19
+ ffmpeg \
20
+ libsndfile1 \
21
+ curl \
22
  && apt-get clean \
23
  && rm -rf /var/lib/apt/lists/*
24