Skip to content

Commit e8c3063

Browse files
committed
Fixed docker image including utils folder
1 parent 9052da6 commit e8c3063

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ simulation.out
33

44
# Exclude local IDE settings
55
.vscode/
6+
.venv/
67

78
# macOS
89
**/.DS_Store

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ WORKDIR /app
44
COPY requirements.txt ./
55
RUN pip install --no-cache-dir -r requirements.txt
66
RUN pip install --no-cache-dir --upgrade pip setuptools
7+
ADD utils /app/utils
78

89
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends build-essential # Update OS packages and keep build-essential
910

1011
COPY backend.py ./
1112
COPY src ./src
1213
COPY networks ./networks
1314
COPY bitrates ./bitrates
15+
COPY utils ./utils
1416

1517
# CMD ["g++ -O3 -o simulation.out ./src/main.cpp"] # Commented out as per original Dockerfile
1618

0 commit comments

Comments
 (0)