diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..39c140d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM python:2.7 + +MAINTAINER j nazario + +RUN apt-get -qq update && \ + apt-get install -yq libpcap-dev && \ + rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +WORKDIR /usr/src/app + +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +ENTRYPOINT [ "python", "nosqlframework.py"] +CMD ["-h"]