/
githubmirror
/
zulip
Обзор
Документация
Войти
/
githubmirror
/
zulip
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/ci/Dockerfile
65 строк
2 KB
Aman Agrawal
ci: Pin Docker base images to linux/amd64.
21 май 2026, 18:50
21 май 2026, 18:50
1ba33c1
Код
Авторство
О чём код?
# Dockerfile for a generic Debian/Ubuntu image with just the basics we # need to make it suitable for CI. In particular: # * a non-root user to run as (a pain to try to do in setup, # because by then we've already cloned the repo); # * Git and other basic utilities. # To rebuild from this file for a given release, say Ubuntu 22.04 jammy: # docker build . --build-arg=BASE_IMAGE=ubuntu:22.04 --pull --tag=zulip/ci:jammy # docker push zulip/ci:jammy # # tools/ci/build-docker-images will rebuild all images, but not push them. ARG BASE_IMAGE # Pin to linux/amd64 so builds on Apple Silicon (or other non-amd64 # hosts) still produce images compatible with our GitHub Actions runners. FROM --platform=linux/amd64 $BASE_IMAGE RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime # Set the locale. ENV LC_ALL C.UTF-8 # Extra packages used by Zulip. RUN apt-get update \ && apt-get -y install --no-install-recommends \ build-essential \ ca-certificates \ curl \ gettext \ git \ hunspell-en-us \ jq \ libffi-dev \ libfreetype6-dev \ libjpeg-dev \ libldap2-dev \ libpq-dev \ libssl-dev \ libxml2-dev \ libxslt1-dev \ locales \ memcached \ moreutils \ puppet \ python3-dev \ python3-pip \ # We do not pre-install rabbitmq-server, as doing so fixes the # nodename to be the current hostname, which varies. Letting Zulip # install rabbitmq allows it to fix the nodename to 'localhost'. redis-server \ sudo \ supervisor \ unzip \ xvfb \ zlib1g-dev ARG USERNAME=github RUN groupadd --gid 1001 $USERNAME \ && useradd --uid 1001 --gid $USERNAME --shell /bin/bash --create-home $USERNAME \ && echo "$USERNAME ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers.d/50-$USERNAME \ && echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep USER $USERNAME CMD ["/bin/sh"]