From 301a0c150266eba66d6cd84410277a4eb9302cb1 Mon Sep 17 00:00:00 2001 From: Gulshan Singh Date: Sun, 4 Sep 2022 09:34:30 -0700 Subject: [PATCH] Add dev-requirements.txt to Docker image (#1115) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 8be00e5f9..dfc5034bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \ ADD ./setup.sh /pwndbg/ ADD ./requirements.txt /pwndbg/ +ADD ./dev-requirements.txt /pwndbg/ # The `git submodule` is commented because it refreshes all the sub-modules in the project # but at this time we only need the essentials for the set up. It will execute at the end. RUN sed -i "s/^git submodule/#git submodule/" ./setup.sh && \