File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ simulation.out
33
44# Exclude local IDE settings
55.vscode /
6+ .venv /
67
78# macOS
89** /.DS_Store
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -4,13 +4,15 @@ WORKDIR /app
44COPY requirements.txt ./
55RUN pip install --no-cache-dir -r requirements.txt
66RUN pip install --no-cache-dir --upgrade pip setuptools
7+ ADD utils /app/utils
78
89RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends build-essential # Update OS packages and keep build-essential
910
1011COPY backend.py ./
1112COPY src ./src
1213COPY networks ./networks
1314COPY bitrates ./bitrates
15+ COPY utils ./utils
1416
1517# CMD ["g++ -O3 -o simulation.out ./src/main.cpp"] # Commented out as per original Dockerfile
1618
Original file line number Diff line number Diff line change 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 )
You can’t perform that action at this time.
0 commit comments