Aqarion commited on
Commit
2ee17f9
·
verified ·
1 Parent(s): 3a363f9

Create A1-DOCKERFILE

Browse files

# AQ-3PATH-STORYFLOW

**Different numbers, same song.**

AQ-3PATH-STORYFLOW is an open-source platform for story, math, code, and community. It lets users explore sequences that can produce the same spectral tone (mu_1), with a clean path for beginners, researchers, and contributors.

## Quick Start

```bash
git clone https://github.com/AQ-Global/AQ-3PATH-STORYFLOW
cd AQ-3PATH-STORYFLOW
docker build -t aq3path .
docker run --rm aq3path

https://huggingface.co/spaces/Aqarion/Phi-377-spectral-geometry/resolve/main/DOCS/A1-DOCKERFILE
https://huggingface.co/spaces/Aqarion-TB13/AQARION-34-NODE-CORE/resolve/main/DOCS/A1-DOCKERFILEhttps://huggingface.co/spaces/Aqarion/Phi-377-spectral-geometry/resolve/main/DOCS/A1-DOCKERFILE

Files changed (1) hide show
  1. DOCKER/A1-DOCKERFILE +21 -0
DOCKER/A1-DOCKERFILE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.12-slim
2
+
3
+ WORKDIR /app
4
+
5
+ ENV PYTHONDONTWRITEBYTECODE=1 \
6
+ PYTHONUNBUFFERED=1
7
+
8
+ RUN addgroup --system app && adduser --system --ingroup app app
9
+
10
+ COPY requirements.txt .
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+
13
+ COPY core/ ./core/
14
+ COPY examples/ ./examples/
15
+ COPY README.md ./README.md
16
+
17
+ RUN chown -R app:app /app
18
+ USER app
19
+
20
+ ENTRYPOINT ["python", "-m", "core.app"]
21
+ CMD ["examples/N_example1.json", "examples/N_example2.json"]