File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed
Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 1+ FROM python:3.13-slim
2+
3+ WORKDIR /opt/ug-exploit
4+
5+ COPY requirements.txt .
6+
7+ RUN pip install --no-cache-dir --upgrade pip && \
8+ pip install --no-cache-dir -r requirements.txt
9+
10+ COPY . .
11+
12+ RUN pip install --no-cache-dir -e .
13+
14+ CMD ["ug-exploit" ]
Original file line number Diff line number Diff line change 11click >= 7.1
2+ lxml-html-clean >= 0.4.2
23setuptools >= 45
34requests >= 2.21
45requests-html >= 0.10
56pyjwt >= 2.1
6- python-decouple >= 3.4
7+ python-decouple >= 3.4
Original file line number Diff line number Diff line change 4545 context : src/like-service
4646 - image : unguard-payment-service
4747 context : src/payment-service
48+ - image : unguard-exploit-toolkit
49+ context : exploit-toolkit
4850
4951 local :
5052 # only the docker CLI respects a manually logged-in daemon
You can’t perform that action at this time.
0 commit comments