broadfield-dev commited on
Commit
a3cec94
·
verified ·
1 Parent(s): d51d74a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -4,11 +4,12 @@ FROM python:3.10-slim
4
  # Set the working directory inside the container
5
  WORKDIR /code
6
 
7
- # Install system dependencies needed for git and building C++ code
8
  RUN apt-get update && apt-get install -y --no-install-recommends \
9
  git \
10
  build-essential \
11
  cmake \
 
12
  && rm -rf /var/lib/apt/lists/*
13
 
14
  # Clone the llama.cpp repository
 
4
  # Set the working directory inside the container
5
  WORKDIR /code
6
 
7
+ # Install system dependencies needed for git, building C++ code, and curl
8
  RUN apt-get update && apt-get install -y --no-install-recommends \
9
  git \
10
  build-essential \
11
  cmake \
12
+ libcurl4-openssl-dev \
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
  # Clone the llama.cpp repository