diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9a8fd07 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM python:3.12-slim + +WORKDIR /app + +COPY requirements.txt /app/ +COPY avala-client-0.1.0.tar.gz /app/ + +RUN pip3 install -r requirements.txt +RUN pip3 install ./avala-client-0.1.0.tar.gz + +COPY client.py /app/ +COPY exploits /app/exploits + +CMD [ "python", "./client.py" ] |
