-
Notifications
You must be signed in to change notification settings - Fork 33
/
Dockerfile
30 lines (25 loc) · 1.24 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# This file is part of REANA.
# Copyright (C) 2017, 2018, 2019, 2020, 2021, 2023 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
FROM docker.io/library/rabbitmq:3.8-management
ENV RABBITMQ_NODENAME=rabbit@localhost
ARG DEBUG=0
RUN if [ "${DEBUG}" -lt 1 ]; then rabbitmq-plugins disable --offline rabbitmq_management; fi
COPY start.sh /start.sh
RUN chmod 755 ./start.sh
CMD ["/start.sh", "test", "1234"]
# Set image labels
LABEL org.opencontainers.image.authors="team@reanahub.io"
LABEL org.opencontainers.image.created="2024-03-04"
LABEL org.opencontainers.image.description="REANA reproducible analysis platform - message broker component"
LABEL org.opencontainers.image.documentation="https://reana-message-broker.readthedocs.io/"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.source="https://github.com/reanahub/reana-message-broker"
LABEL org.opencontainers.image.title="reana-message-broker"
LABEL org.opencontainers.image.url="https://github.com/reanahub/reana-message-broker"
LABEL org.opencontainers.image.vendor="reanahub"
# x-release-please-start-version
LABEL org.opencontainers.image.version="0.9.3"
# x-release-please-end