mirror of https://github.com/OWASP/Nettacker.git
Create Dockerfile
This commit is contained in:
parent
dc67851ace
commit
7d9784bb1b
|
|
@ -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" ]
|
||||
Loading…
Reference in New Issue