quality / commitlint (push) Skipped
quality / changes (push) Successful in 8s
quality / openapi (push) Skipped
quality / web (push) Skipped
quality / docker-check (push) Skipped
quality / go (push) Successful in 57s
quality / bird2 (push) Successful in 15s
CD / quality (push) Successful in 1m27s
CD / publish (push) Failing after 4m13s
- Changed base image references in `docker-bake.hcl`, Dockerfiles, and `mirror-base-images.sh` from public ECR to Docker Hub to avoid 429 errors and improve reliability. - Updated README documentation to reflect the new source for base images, clarifying the mirroring process and behavior when tags already exist.
19 lines
786 B
Docker
19 lines
786 B
Docker
# syntax=docker/dockerfile:1.7
|
||
# BIRD из репозитория Ubuntu (Noble 24.04 LTS) — актуальнее пакета Debian bookworm.
|
||
# Stage bird2-base общий с evobgp-agent (одинаковые слои на speaker-VPS).
|
||
ARG BASE_UBUNTU=docker.io/library/ubuntu:noble
|
||
|
||
FROM ${BASE_UBUNTU} AS bird2-base
|
||
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
||
rm -f /etc/apt/apt.conf.d/docker-clean \
|
||
&& apt-get update \
|
||
&& apt-get install -y --no-install-recommends bird2 ca-certificates \
|
||
&& rm -rf /var/lib/apt/lists/*
|
||
|
||
FROM bird2-base AS bird2
|
||
COPY deploy/bird/bird.conf /etc/bird/bird.conf
|
||
RUN mkdir -p /etc/bird/bird.d
|
||
EXPOSE 179
|
||
CMD ["bird", "-f", "-c", "/etc/bird/bird.conf"]
|