DevBM commited on
Commit
5038377
·
verified ·
1 Parent(s): 28dda0b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -5,14 +5,13 @@ WORKDIR /app
5
  # Set environment variable to disable Numba caching
6
  ENV NUMBA_DISABLE_CACHE=1
7
 
8
- # Perform apt-get update and install packages
9
  RUN apt-get update && apt-get install -y \
10
  build-essential \
11
  curl \
12
  software-properties-common \
13
  git \
14
- && rm -rf /var/lib/apt/lists/* # Copy requirements.txt and src/ directory
15
- # These MUST be on separate lines from the RUN command above
16
  COPY requirements.txt ./
17
  COPY src/ ./src/
18
 
 
5
  # Set environment variable to disable Numba caching
6
  ENV NUMBA_DISABLE_CACHE=1
7
 
 
8
  RUN apt-get update && apt-get install -y \
9
  build-essential \
10
  curl \
11
  software-properties-common \
12
  git \
13
+ && rm -rf /var/lib/apt/lists/*
14
+
15
  COPY requirements.txt ./
16
  COPY src/ ./src/
17