Skip to content

Commit ac30415

Browse files
committed
Added python3-pip to fix pip not found error.
1 parent 8224967 commit ac30415

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

atlas/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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.

atlas/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
ARG BUILD_FROM
32
ARG BUILD_ARCH
43
# Stage 1: Build Go binary and clone repo
@@ -19,7 +18,7 @@ RUN go build -o /atlas .
1918
FROM $BUILD_FROM
2019

2120
RUN 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
4342
EXPOSE 8888 8889
44-
CMD ["/run.sh"]
43+
CMD ["/run.sh"]

atlas/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Atlas
3-
version: "0.0.4"
3+
version: "0.0.5"
44
slug: atlas
55
description: Network Infrastructure Visualizer
66
arch:

0 commit comments

Comments
 (0)