We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e28361f + a523e59 commit 4a3a1eeCopy full SHA for 4a3a1ee
.travis.yml
@@ -1,13 +1,15 @@
1
language: python
2
+services: docker
3
python:
4
- 3.4
5
- 3.5
6
- 3.6
7
install:
8
- pip --version
9
- pip install -r test-requirements.txt
- - pip install pep8
10
+ - pip install pep8
11
before_script:
12
- pep8 -v *.py VHostScan/
13
script:
14
- pytest
15
+ - docker build -t VHostScan .
Dockerfile
@@ -0,0 +1,11 @@
+FROM ubuntu:latest
+
+RUN mkdir /app
+ADD . /app
+RUN apt-get update; apt-get install -y python3 python3-pip
+RUN cd /app && pip3 install -r test-requirements.txt && python3 setup.py install
+ENTRYPOINT ["VHostScan"]
0 commit comments