shreyas-joshi commited on
Commit
d6e85ef
·
1 Parent(s): 04e8fe6

fix: add missing build dependencies in Dockerfile for improved environment setup

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -0
  2. code-review-env/Dockerfile +1 -0
Dockerfile CHANGED
@@ -5,6 +5,7 @@ WORKDIR /app/code-review-env
5
  # Install system dependencies and uv in a single layer
6
  RUN apt-get update && apt-get install -y --no-install-recommends \
7
  git curl nodejs npm \
 
8
  && rm -rf /var/lib/apt/lists/* \
9
  && curl -LsSf https://astral.sh/uv/install.sh | sh
10
 
 
5
  # Install system dependencies and uv in a single layer
6
  RUN apt-get update && apt-get install -y --no-install-recommends \
7
  git curl nodejs npm \
8
+ build-essential cmake ninja-build pkg-config \
9
  && rm -rf /var/lib/apt/lists/* \
10
  && curl -LsSf https://astral.sh/uv/install.sh | sh
11
 
code-review-env/Dockerfile CHANGED
@@ -5,6 +5,7 @@ WORKDIR /app
5
  # Install system dependencies and uv in a single layer
6
  RUN apt-get update && apt-get install -y --no-install-recommends \
7
  git curl nodejs npm \
 
8
  && rm -rf /var/lib/apt/lists/* \
9
  && curl -LsSf https://astral.sh/uv/install.sh | sh
10
 
 
5
  # Install system dependencies and uv in a single layer
6
  RUN apt-get update && apt-get install -y --no-install-recommends \
7
  git curl nodejs npm \
8
+ build-essential cmake ninja-build pkg-config \
9
  && rm -rf /var/lib/apt/lists/* \
10
  && curl -LsSf https://astral.sh/uv/install.sh | sh
11