DebopamC commited on
Commit
74b8ad8
·
verified ·
1 Parent(s): 47da1b6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -2,11 +2,15 @@ FROM python:3.12-slim-bookworm
2
 
3
  WORKDIR /app
4
 
 
 
 
5
  # Update package index and install necessary tools, including curl
6
  RUN apt-get update && \
7
  apt-get install -y --no-install-recommends \
8
  build-essential \
9
  git \
 
10
  curl && \
11
  rm -rf /var/lib/apt/lists/*
12
 
 
2
 
3
  WORKDIR /app
4
 
5
+ # Redundant command to invalidate cache
6
+ RUN echo "Invalidate the cache"
7
+
8
  # Update package index and install necessary tools, including curl
9
  RUN apt-get update && \
10
  apt-get install -y --no-install-recommends \
11
  build-essential \
12
  git \
13
+ cmake \
14
  curl && \
15
  rm -rf /var/lib/apt/lists/*
16