This repository has been archived by the owner on Sep 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 794
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v0.8.0. My name's not Prarie.
- Loading branch information
Showing
130 changed files
with
5,628 additions
and
1,307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[report] | ||
include = security_monkey/*.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.git | ||
secmonkey.env | ||
boto.cfg | ||
.travis.yml | ||
#docs | ||
supervisor | ||
config-default.py | ||
generate-docs.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,3 +53,8 @@ devlog/ | |
venv/ | ||
.idea/ | ||
|
||
boto.cfg | ||
secmonkey.env | ||
*.crt | ||
*.key | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
|
||
# 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 <talent@netflix.com> | ||
|
||
ENV SECURITY_MONKEY_VERSION=v0.8.0 \ | ||
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 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 | ||
|
||
ENTRYPOINT ["/usr/local/src/security_monkey/docker/api-start.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.