Skip to content

Commit 88a23f6

Browse files
committed
update README Docker commands for cross-platform support
- Changed \D:\SecuScan to \D:\SecuScan for better Windows/PowerShell compatibility. - Generalized volume mount path to /src for clarity. - Bumped version to 1.1.3.
1 parent be57afc commit 88a23f6

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ You can use the pre-built image directly from Docker Hub without installing Pyth
1818
# Pull the latest image
1919
docker pull secuscan/secuscan:latest
2020

21-
# Run a scan on the current directory
22-
docker run --rm -v $(pwd):/scan secuscan/secuscan:latest scan /scan
21+
# Run a scan (replace /path/to/project with your target)
22+
docker run --rm -it -v ${PWD}:/src secuscan/secuscan:latest scan /src
2323
```
24-
*Note: The official image is available at `secuscan/secuscan`.*
2524

2625
### Option 2: PyPI (Python Package)
2726
Install directly via pip:
@@ -46,7 +45,7 @@ To build the Docker image locally:
4645

4746
```bash
4847
docker build -f docker/Dockerfile -t secuscan .
49-
docker run --rm -v $(pwd):/scan secuscan scan /scan
48+
docker run --rm -it -v ${PWD}:/src secuscan scan /src
5049
```
5150

5251
## Usage

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "secuscan"
7-
version = "1.1.2"
7+
version = "1.1.3"
88
description = "A dual-platform static vulnerability scanner for Android and Web applications."
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)