diff options
Diffstat (limited to 'ci/dockerfiles/ci-base')
-rw-r--r-- | ci/dockerfiles/ci-base | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ci/dockerfiles/ci-base b/ci/dockerfiles/ci-base new file mode 100644 index 0000000000..0eb4624030 --- /dev/null +++ b/ci/dockerfiles/ci-base @@ -0,0 +1,20 @@ +ARG ERLANG_VERSION + +FROM eu.gcr.io/cf-rabbitmq-core/erlang_elixir:${ERLANG_VERSION} + +RUN apt-get update && apt-get install -y rsync zip + +RUN curl -L -o buildevents https://github.com/honeycombio/buildevents/releases/latest/download/buildevents-linux-amd64 +RUN chmod 755 buildevents +RUN mv buildevents /usr/bin/ + +WORKDIR /workspace + +COPY ci/scripts/fetch_secondary_umbrellas.sh . + +# If we clone the monorepo at a ref when the monorepo was still rabbitmq-server, +# then we just get rabbitmq-server (not the monorepo as it would have looked, had +# it existed at that time). So for the time being, secondary umbrellas will derive +# from rabbitmq-public-umbrella (as they always have) +ARG SECONDARY_UMBRELLA_GITREFS +RUN bash fetch_secondary_umbrellas.sh ${SECONDARY_UMBRELLA_GITREFS}
\ No newline at end of file |