/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ci/lint_imagefile
23 строки
747 B
fanquake
ci: use Ubuntu 26.04 for lint container
14 июл 2026, 13:22
Не верифицирован
14 июл 2026, 13:22
900a778
Код
Авторство
О чём код?
# Copyright (c) The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or https://opensource.org/license/mit/. # See test/lint/README.md for usage. FROM mirror.gcr.io/ubuntu:26.04 # Pin uv and ruff to minor version to avoid breaking changes # https://docs.astral.sh/uv/reference/policies/versioning/ # https://docs.astral.sh/ruff/versioning/ COPY --from=ghcr.io/astral-sh/uv:0.11 /uv /uvx /bin/ COPY --from=ghcr.io/astral-sh/ruff:0.15 /ruff /bin/ COPY ./ci/retry/retry /ci_retry COPY ./.python-version /.python-version COPY ./ci/lint/requirements.txt /ci/lint/requirements.txt COPY ./ci/lint/01_install.sh /install.sh RUN /install.sh && \ rm -rf /var/lib/apt/lists/* WORKDIR /bitcoin