Skip to content

Commit ca57425

Browse files
committed
Merge branch 'release/v2.0.1'
2 parents 3ed7ab5 + bd97182 commit ca57425

4 files changed

Lines changed: 11 additions & 2 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

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### ROADMAP
99
- Switch to new domain.
1010

11+
## [2.0.1] - 2025-03-04
12+
13+
### Fixed
14+
- Fixed docker image for deployment
15+
1116
## [2.0.0] - 2025-03-03
1217

1318
### Added
@@ -85,4 +90,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8590
[1.0.0]: https://github.com/MirkoZETA/FlexNetSim-API/releases/tag/v1.0.0
8691
[1.1.0]: https://github.com/MirkoZETA/FlexNetSim-API/releases/tag/v1.1.0
8792
[1.1.1]: https://github.com/MirkoZETA/FlexNetSim-API/releases/tag/pipeline-fix
88-
[2.0.0]: https://github.com/MirkoZETA/FlexNetSim-API/releases/tag/v2.0.0
93+
[2.0.0]: https://github.com/MirkoZETA/FlexNetSim-API/releases/tag/v2.0.0
94+
[2.0.1]: https://github.com/MirkoZETA/FlexNetSim-API/releases/tag/v2.0.1

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Flex Net Sim Backend API
22

3-
[![Static Badge](https://img.shields.io/badge/version-2.0.0-blue)](https://github.com/MirkoZETA/FlexNetSim-API)
3+
[![Static Badge](https://img.shields.io/badge/version-2.0.1-blue)](https://github.com/MirkoZETA/FlexNetSim-API)
44
![Static Badge](https://img.shields.io/badge/language-python-blue)
55
[![Static Badge](https://img.shields.io/badge/licese-MIT-green)](https://github.com/MirkoZETA/FlexNetSim-API/blob/master/LICENSE)
66
[![Static Badge](https://github.com/MirkoZETA/FlexNetSim-API/actions/workflows/fns-api-workflow.yml/badge.svg)](https://github.com/MirkoZETA/FlexNetSim-API/actions/workflows/fns-api-workflow.yml)

0 commit comments

Comments
 (0)