/
githubmirror
/
ignition
Обзор
Документация
Войти
/
githubmirror
/
ignition
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
butane/Dockerfile
10 строк
298 B
Steven Presti
*: move all files to butane/ subdirectory for merge into ignition
28 июл 2026, 23:13
28 июл 2026, 23:13
9938da6
Код
Авторство
О чём код?
FROM quay.io/fedora/fedora:44 AS builder RUN dnf install -y golang git-core RUN mkdir /butane COPY . /butane WORKDIR /butane RUN ./build_for_container FROM quay.io/fedora/fedora-minimal:44 COPY --from=builder /butane/bin/container/butane /usr/local/bin/butane ENTRYPOINT ["/usr/local/bin/butane"]