forked from arunvelsriram/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
31 lines (27 loc) · 867 Bytes
/
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
31
FROM ubuntu:trusty
RUN apt-get update \
&& apt-get install --yes --force-yes \
curl \
dnsutils \
httpie \
iputils-ping \
jq \
mongodb-clients \
mysql-client \
net-tools \
postgresql-client \
redis-tools \
telnet \
vim \
rabbitmq-server \
apt-transport-https
RUN curl -sL https://repos.influxdata.com/influxdb.key | apt-key add -
RUN sh /etc/lsb-release
RUN echo "deb https://repos.influxdata.com/ubuntu trusty stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
RUN apt-get update && apt-get install influxdb --yes --force-yes
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN curl -O https://raw.githubusercontent.com/rabbitmq/rabbitmq-management/v3.7.8/bin/rabbitmqadmin && \
mv rabbitmqadmin /usr/local/bin/ && chmod +x /usr/local/bin/rabbitmqadmin