forked from Netflix/security_monkey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
48 lines (39 loc) · 1.85 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 2014 Netflix, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM ubuntu:14.04
MAINTAINER Netflix Open Source Development <[email protected]>
ENV SECURITY_MONKEY_VERSION=v0.9.3 \
SECURITY_MONKEY_SETTINGS=/usr/local/src/security_monkey/env-config/config-docker.py
RUN apt-get update &&\
apt-get -y -q install python-software-properties software-properties-common postgresql-9.3 postgresql-client-9.3 postgresql-contrib-9.3 curl &&\
apt-get install -y python-pip python-dev python-psycopg2 libffi-dev libpq-dev libyaml-dev libxml2-dev libxmlsec1-dev git sudo swig &&\
rm -rf /var/lib/apt/lists/*
RUN pip install setuptools --upgrade
RUN pip install pip --upgrade
RUN pip install "urllib3[secure]" --upgrade
RUN pip install google-compute-engine
RUN pip install cloudaux\[gcp\]
RUN cd /usr/local/src &&\
# git clone --branch $SECURITY_MONKEY_VERSION https://github.com/Netflix/security_monkey.git
/bin/mkdir -p security_monkey
ADD . /usr/local/src/security_monkey
RUN cd /usr/local/src/security_monkey &&\
python setup.py install &&\
/bin/mkdir -p /var/log/security_monkey/
RUN chmod +x /usr/local/src/security_monkey/docker/*.sh &&\
mkdir -pv /var/log/security_monkey &&\
/usr/bin/touch /var/log/security_monkey/securitymonkey.log
# ln -s /dev/stdout /var/log/security_monkey/securitymonkey.log
WORKDIR /usr/local/src/security_monkey
EXPOSE 5000