File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.0.9 (2025-09-26)
4+
5+ - Fixing build error because of venv not sourced.
6+
37## 0.0.8 (2025-09-26)
48
59- Logos converted from SVG to PNG.
Original file line number Diff line number Diff line change 11ARG BUILD_FROM
2- ARG BUILD_ARCH
2+ ARG BUILDARCH
33# Stage 1: Build Go binary and clone repo
44FROM --platform=$BUILDARCH golang:1.22 AS builder
55
@@ -18,15 +18,14 @@ RUN go build -o /atlas .
1818FROM $BUILD_FROM
1919
2020RUN apk add --no-cache \
21- nginx iputils-ping traceroute nmap sqlite net-tools curl jq ca-certificates git py3-pip \
22- && pip install --no-cache-dir fastapi uvicorn
21+ nginx iputils-ping traceroute nmap sqlite net-tools curl jq ca-certificates git py3-pip
2322
2423# Create a virtual environment
2524RUN python3 -m venv /opt/venv
2625ENV PATH="/opt/venv/bin:$PATH"
2726
2827# Install python packages
29- RUN pip install --no-cache-dir fastapi uvicorn
28+ RUN . /optvenv/bin/activate && pip install --no-cache-dir fastapi uvicorn
3029
3130# Remove default Nginx config
3231RUN rm -f /etc/nginx/conf.d/default.conf /etc/nginx/sites-enabled/default || true
@@ -47,4 +46,4 @@ ENV ATLAS_API_PORT=8889
4746
4847# Entrypoint: initializes DB, runs scans, launches FastAPI and Nginx
4948EXPOSE 8888 8889
50- CMD ["/run.sh" ]
49+ CMD ["/run.sh" ]
Original file line number Diff line number Diff line change 11---
22name : Atlas
3- version : " 0.0.8 "
3+ version : " 0.0.9 "
44slug : atlas
55description : Network Infrastructure Visualizer
66arch :
You can’t perform that action at this time.
0 commit comments