Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.git
.gitignore
.dockerignore
docker-compose.yml
docs/
multiscanner/tests/
.pre-commit-config.yaml
tox.ini
.travis.yml
2 changes: 1 addition & 1 deletion docker_utils/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine
MAINTAINER Patrick Copeland ptcnop
LABEL maintainer="Patrick Copeland ptcnop"

ENV YARA_VERSION 3.8.1
ENV YARA_PY_VERSION 3.8.1
Expand Down
4 changes: 3 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ if [ -e /etc/debian_version ]; then
fi

# Install multiscanner library and dependencies
curl -k https://bootstrap.pypa.io/get-pip.py | python
if ! [ -x "$(command -v pip)" ]; then
curl -k https://bootstrap.pypa.io/get-pip.py | python
fi
pip install --upgrade $DIR

#Code to compile and install yara
Expand Down