Skip to content

Commit 539e5c8

Browse files
committed
Fixed dockerifle
1 parent 19279f4 commit 539e5c8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ ENV HOST=${HOST} \
5151
UV_SYSTEM_PYTHON=1 \
5252
UV_COMPILE_BYTECODE=1
5353

54-
RUN curl -LsSf https://astral.sh/uv/install.sh | sh \
54+
RUN apt-get update \
55+
&& apt-get install -y curl nano \
56+
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
5557
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages archivebox-api[all]>=0.0.14
5658

5759
CMD ["archivebox-mcp"]

debug.Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ ENV HOST=${HOST} \
5353

5454
WORKDIR /app
5555
COPY . /app
56-
RUN curl -LsSf https://astral.sh/uv/install.sh | sh \
56+
RUN apt-get update \
57+
&& apt-get install -y curl nano \
58+
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
5759
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages .[all]
5860

5961
CMD ["archivebox-mcp"]

0 commit comments

Comments
 (0)