Spaces:
Running
Running
Commit
·
0128f53
1
Parent(s):
83fd079
root
Browse files- Dockerfile +8 -4
Dockerfile
CHANGED
@@ -12,6 +12,14 @@ RUN apt-get -y update && apt-get -y install -y python3-pip python-is-python3 git
|
|
12 |
|
13 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
# Set up a new user named "user" with user ID 1000
|
16 |
RUN useradd -m -u 1000 user
|
17 |
|
@@ -22,10 +30,6 @@ USER user
|
|
22 |
ENV HOME=/home/user \
|
23 |
PATH=/home/user/.local/bin:$PATH
|
24 |
|
25 |
-
WORKDIR /
|
26 |
-
|
27 |
-
RUN git clone https://github.com/edmcman/DIRTY
|
28 |
-
RUN pip install --no-cache-dir --upgrade -r /DIRTY/requirements.txt
|
29 |
|
30 |
# Set the working directory to the user's home directory
|
31 |
WORKDIR $HOME/app
|
|
|
12 |
|
13 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
14 |
|
15 |
+
# Install DIRTY Ghidra
|
16 |
+
|
17 |
+
WORKDIR /
|
18 |
+
|
19 |
+
RUN git clone https://github.com/edmcman/DIRTY
|
20 |
+
RUN pip install --no-cache-dir --upgrade -r /DIRTY/requirements.txt
|
21 |
+
|
22 |
+
|
23 |
# Set up a new user named "user" with user ID 1000
|
24 |
RUN useradd -m -u 1000 user
|
25 |
|
|
|
30 |
ENV HOME=/home/user \
|
31 |
PATH=/home/user/.local/bin:$PATH
|
32 |
|
|
|
|
|
|
|
|
|
33 |
|
34 |
# Set the working directory to the user's home directory
|
35 |
WORKDIR $HOME/app
|