From ca375ddf3d4b15aaffe3e1e2ceafa422d2f1ef58 Mon Sep 17 00:00:00 2001 From: Caleb Stewart Date: Mon, 8 Feb 2021 17:13:08 -0500 Subject: [PATCH] Fixed dockerfile for dockerhub integration --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e032437..ea55864 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,7 @@ COPY . /pwncat # Setup pwncat RUN set -eux \ && cd /pwncat \ + && python3 -m pip install -r requirements.txt \ && python3 setup.py install # Cleanup @@ -36,7 +37,7 @@ FROM alpine:latest as final RUN set -eux \ && apk add --no-cache \ - python3 \ + python3 libstdc++ \ && find /usr/lib -type f -name '*.pyc' -print0 | xargs -0 -n1 rm -rf || true \ && find /usr/lib -type d -name '__pycache__' -print0 | xargs -0 -n1 rm -rf || true \ && mkdir /work