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
12 changes: 5 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,19 @@ MAINTAINER Sebastien LANGOUREAUX <linuxworkgroup@hotmail.com>
ENV ACTIVEMQ_CONFIG_DIR /opt/activemq/conf.tmp
ENV ACTIVEMQ_DATA_DIR /data/activemq

# Update distro and install some packages
# Update distro and install some packages and Install stompy
RUN apt-get update && \
apt-get install --no-install-recommends -y python-testtools python-nose python-pip vim curl supervisor logrotate locales && \
update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX && \
locale-gen en_US.UTF-8 && \
dpkg-reconfigure locales && \
rm -rf /var/lib/apt/lists/*

# Install stompy
RUN pip install stomp.py
rm -rf /var/lib/apt/lists/* && \
pip install stomp.py

# Lauch app install
COPY assets/setup/ /app/setup/
RUN chmod +x /app/setup/install
RUN /app/setup/install
RUN chmod +x /app/setup/install && \
/app/setup/install


# Copy the app setting
Expand Down