Skip to content

Commit 3e7e108

Browse files
reg0bsW3D3
authored andcommitted
✨ feat(exploit-toolkit): Add Dockerfile and skaffold image build config
1 parent d8ff6d6 commit 3e7e108

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

exploit-toolkit/Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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"]

exploit-toolkit/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
click>=7.1
2+
lxml-html-clean>=0.4.2
23
setuptools>=45
34
requests>=2.21
45
requests-html>=0.10
56
pyjwt>=2.1
6-
python-decouple>=3.4
7+
python-decouple>=3.4

skaffold.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ build:
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

0 commit comments

Comments
 (0)