Skip to content

Commit

Permalink
initial stub for CyberReboot#588, wip
Browse files Browse the repository at this point in the history
  • Loading branch information
cglewis committed Jul 12, 2017
1 parent cea24a0 commit cfacd77
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Expand Up @@ -6,7 +6,6 @@
*.tar
*.zip
.cache
.coverage
.DS_Store
.git
.vent
Expand Down
16 changes: 16 additions & 0 deletions Dockerfile.test
@@ -0,0 +1,16 @@
FROM alpine:3.5
MAINTAINER Charlie Lewis <clewis@iqt.org>

RUN apk add --update \
docker \
make \
python \
py2-pip \
&& rm -rf /var/cache/apk/*

ADD . /vent
WORKDIR /vent
RUN pip install -r tests/requirements.txt

ENTRYPOINT ["make"]
CMD ["test"]
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -5,7 +5,7 @@ build: clean
@echo "checking dependencies"
@echo
env
docker version
docker version || true
pip -V
pip install -r tests/requirements.txt
python setup.py install
Expand Down

0 comments on commit cfacd77

Please sign in to comment.