diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..3bd10883 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:2.7-alpine +RUN apk add --no-cache python pkgconfig python-dev openssl-dev libffi-dev musl-dev make gcc +WORKDIR /usr/src/app +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt +COPY . . +CMD [ "python", "./nettacker.py", "--help" ] \ No newline at end of file