Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

FROM python:3.13-bookworm AS builder

COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:0.12.3 /uv /uvx /bin/

WORKDIR /build

Expand All @@ -34,7 +34,8 @@ ENV PATH=/opt/exabgp/bin:$PATH
# install deps
RUN apt-get update \
&& apt-get install -y iproute2 dumb-init \
&& apt-get clean
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Add ExaBGP
RUN useradd -r exa \
Expand Down