Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER Luis Fernando Gomes <[email protected]>

ENV ERLANG_SOLUTIONS_VERSION 1.0-1
RUN yum update -y && yum clean all
RUN yum install -y wget && yum clean all
RUN yum install -y wget epel-release && yum clean all
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Which version will be installed on this repository?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure. I was not able to get the build to work without installing epel-release. You might be able to get yours to work without that specific change. The most relevant change is commit 41624fd

RUN yum install -y http://packages.erlang-solutions.com/erlang-solutions-${ERLANG_SOLUTIONS_VERSION}.noarch.rpm && yum clean all
RUN yum install -y erlang && yum clean all

Expand All @@ -27,7 +27,7 @@ ENV HOME /var/lib/rabbitmq

RUN mkdir -p /var/lib/rabbitmq /etc/rabbitmq \
&& chown -R rabbitmq:rabbitmq /var/lib/rabbitmq /etc/rabbitmq \
&& chmod 777 /var/lib/rabbitmq /etc/rabbitmq
&& chmod -R 777 /var/lib/rabbitmq /etc/rabbitmq

RUN chown -R rabbitmq:rabbitmq /opt/app-root
# && \
Expand Down