File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.0.5 (2025-09-26)
4+
5+ - Added python3-pip to fix pip not found error.
6+
37## 0.0.4 (2025-09-26)
48
59- Fixed Dockerfile build arguments.
Original file line number Diff line number Diff line change 1-
21ARG BUILD_FROM
32ARG BUILD_ARCH
43# Stage 1: Build Go binary and clone repo
@@ -19,7 +18,7 @@ RUN go build -o /atlas .
1918FROM $BUILD_FROM
2019
2120RUN apk add --no-cache \
22- nginx iputils-ping traceroute nmap sqlite net-tools curl jq ca-certificates git \
21+ nginx iputils-ping traceroute nmap sqlite net-tools curl jq ca-certificates git python3-pip \
2322 && pip install --no-cache-dir fastapi uvicorn
2423
2524# Remove default Nginx config
@@ -41,4 +40,4 @@ ENV ATLAS_API_PORT=8889
4140
4241# Entrypoint: initializes DB, runs scans, launches FastAPI and Nginx
4342EXPOSE 8888 8889
44- CMD ["/run.sh" ]
43+ CMD ["/run.sh" ]
Original file line number Diff line number Diff line change 11---
22name : Atlas
3- version : " 0.0.4 "
3+ version : " 0.0.5 "
44slug : atlas
55description : Network Infrastructure Visualizer
66arch :
You can’t perform that action at this time.
0 commit comments