File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff 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
5759CMD ["archivebox-mcp" ]
Original file line number Diff line number Diff line change @@ -53,7 +53,9 @@ ENV HOST=${HOST} \
5353
5454WORKDIR /app
5555COPY . /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
5961CMD ["archivebox-mcp" ]
You can’t perform that action at this time.
0 commit comments