2022-07-16 02:34:09 +02:00
|
|
|
# To build these production upgrade test images, say an Debian 11 Bullseye system
|
|
|
|
# preinstalled with Zulip 5.0:
|
|
|
|
# docker build . -f Dockerfile.prod \
|
|
|
|
# --build-arg=BASE_IMAGE=zulip/ci:bullseye \
|
|
|
|
# --build-arg=VERSION=5.0 \
|
|
|
|
# --tag=zulip/ci:focal-5.0
|
|
|
|
# docker push zulip/ci:focal-5.0
|
2021-06-02 19:35:03 +02:00
|
|
|
|
2021-06-24 21:52:53 +02:00
|
|
|
ARG BASE_IMAGE
|
|
|
|
FROM $BASE_IMAGE
|
2021-06-02 19:35:03 +02:00
|
|
|
|
|
|
|
# Download the release tarball, start rabbitmq server and install the server
|
2021-06-24 21:52:53 +02:00
|
|
|
ARG VERSION
|
2021-06-02 19:35:03 +02:00
|
|
|
RUN cd $(mktemp -d) \
|
2022-11-07 22:50:24 +01:00
|
|
|
&& curl -fLO --retry 3 "https://download.zulip.com/server/zulip-server-$VERSION.tar.gz" \
|
2021-06-24 21:52:53 +02:00
|
|
|
&& tar -xf "zulip-server-$VERSION.tar.gz" \
|
2021-11-29 23:37:16 +01:00
|
|
|
# Version 3.4 predates ddb9d16132a6336b384bf674c4c950cd75d83e5c and 9d57fa97597ec176a8357d6620ab9e670ee19f4e
|
|
|
|
&& perl -pi -e 's/pgrep -f epmd/which pgrep && pgrep -x epmd/' zulip-server-$VERSION/puppet/zulip/manifests/rabbit.pp \
|
2022-07-16 02:38:25 +02:00
|
|
|
&& sudo -s "./zulip-server-$VERSION/scripts/setup/install" --self-signed-cert --hostname 127.0.0.1 --email ci@example.com \
|
2022-05-19 01:06:20 +02:00
|
|
|
&& sudo service rabbitmq-server stop
|
2021-06-02 19:35:03 +02:00
|
|
|
|
|
|
|
CMD ["/bin/sh"]
|