VirtualLab commited on
Commit
d3ee97a
·
1 Parent(s): bc5f33e

Default model

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -11
Dockerfile CHANGED
@@ -20,17 +20,6 @@ RUN pip install --no-cache-dir --upgrade pip
20
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
21
  COPY --chown=user . $HOME/app
22
 
23
- # Install necessary dependencies
24
- RUN apt-get update && apt-get install -y \
25
- build-essential \
26
- libomp-dev \
27
- wget \
28
- curl \
29
- git \
30
- && rm -rf /var/lib/apt/lists/*
31
-
32
-
33
- # Install Python dependencies
34
  COPY . $HOME/app
35
  RUN pip install --no-cache-dir -r requirements.txt
36
 
 
20
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
21
  COPY --chown=user . $HOME/app
22
 
 
 
 
 
 
 
 
 
 
 
 
23
  COPY . $HOME/app
24
  RUN pip install --no-cache-dir -r requirements.txt
25