Skip to content

Commit 214cf8e

Browse files
fix(release): regressions in dockerfiles (kaito-project#302)
Signed-off-by: Robert Cronin <robert.owen.cronin@gmail.com>
1 parent 9c051d5 commit 214cf8e

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ ARG GIT_COMMIT=unknown
1111

1212
WORKDIR /app
1313

14+
# make is required by the verify-versions prebuild hook in package.json
15+
RUN apt-get update \
16+
&& apt-get install -y --no-install-recommends make \
17+
&& rm -rf /var/lib/apt/lists/*
18+
1419
# Copy package files for dependency installation
1520
COPY package.json bun.lock* ./
1621
COPY backend/package.json backend/

images/model-downloader/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.14-slim
22

3-
RUN pip install --no-cache-dir huggingface_hub==1.6.0 && \
3+
RUN pip install --no-cache-dir huggingface_hub==1.6.0 click && \
44
hf version
55

66
ENTRYPOINT ["hf"]

0 commit comments

Comments
 (0)