We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9052da6 commit e8c3063Copy full SHA for e8c3063
2 files changed
.gitignore
@@ -3,6 +3,7 @@ simulation.out
3
4
# Exclude local IDE settings
5
.vscode/
6
+.venv/
7
8
# macOS
9
**/.DS_Store
Dockerfile
@@ -4,13 +4,15 @@ WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir --upgrade pip setuptools
+ADD utils /app/utils
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends build-essential # Update OS packages and keep build-essential
10
11
COPY backend.py ./
12
COPY src ./src
13
COPY networks ./networks
14
COPY bitrates ./bitrates
15
+COPY utils ./utils
16
17
# CMD ["g++ -O3 -o simulation.out ./src/main.cpp"] # Commented out as per original Dockerfile
18
0 commit comments