/
githubmirror
/
traefik
Обзор
Документация
Войти
/
githubmirror
/
traefik
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/check.Dockerfile
42 строки
960 B
romain
Merge branch v2.11 into v3.6
18 июн 2026, 11:46
18 июн 2026, 11:46
263684b
Код
Авторство
О чём код?
FROM alpine:3.24 RUN apk --no-cache --no-progress add \ build-base \ gcompat \ libcurl \ libxml2-dev \ libxslt-dev \ ruby \ ruby-bigdecimal \ ruby-dev \ ruby-ffi \ zlib-dev RUN gem install nokogiri --version 1.18.6 --no-document -- --use-system-libraries RUN gem install html-proofer --version 5.0.10 --no-document -- --use-system-libraries # After Ruby, some NodeJS YAY! RUN apk --no-cache --no-progress add \ git \ nodejs \ npm RUN npm install --global \ markdownlint@0.29.0 \ markdownlint-cli@0.35.0 # Finally the shell tools we need for later # tini helps to terminate properly all the parallelized tasks when sending CTRL-C RUN apk --no-cache --no-progress add \ ca-certificates \ curl \ tini COPY ./scripts/verify.sh /verify.sh COPY ./scripts/lint.sh /lint.sh COPY ./scripts/lint-yaml.sh /lint-yaml.sh WORKDIR /app VOLUME ["/tmp","/app"] ENTRYPOINT ["/sbin/tini","-g","sh"]