diff --git a/frameworks/web-framework-python/Dockerfile b/frameworks/web-framework-python/Dockerfile index 2cb4a0df5..f4416f747 100644 --- a/frameworks/web-framework-python/Dockerfile +++ b/frameworks/web-framework-python/Dockerfile @@ -15,7 +15,7 @@ FROM ubuntu:26.04 ENV LD_LIBRARY_PATH=/app/lib RUN apt update -RUN apt install -y python3 python3-pip +RUN apt install -y python3 python3-dev python3-pip COPY --from=build /app/build/bin /app diff --git a/frameworks/web-framework-python/meta.json b/frameworks/web-framework-python/meta.json index bd3bc0951..acdad8030 100644 --- a/frameworks/web-framework-python/meta.json +++ b/frameworks/web-framework-python/meta.json @@ -1,11 +1,11 @@ -{ - "display_name": "WebFramework Python", - "language": "Pyton", - "engine": "WebFramework", - "type": "production", - "description": "Web framework in C++ with different language APIs(Python, C, C++, C#)", - "repo": "https://github.com/LazyPanda07/WebFramework", - "enabled": true, - "tests": [ "baseline", "latency-1m", "limited-conn", "pipelined", "json", "upload", "static", "echo-ws" ], - "maintainers": [ "LazyPanda07" ] +{ + "display_name": "WebFramework Python", + "language": "Pyton", + "engine": "WebFramework", + "type": "production", + "description": "Web framework in C++ with different language APIs(Python, C, C++, C#)", + "repo": "https://github.com/LazyPanda07/WebFramework", + "enabled": true, + "tests": [ "baseline", "latency-1m", "limited-conn", "pipelined", "json", "upload", "static", "echo-ws" ], + "maintainers": [ "LazyPanda07" ] } \ No newline at end of file diff --git a/frameworks/web-framework-python/web_framework_benchmark/CMakeLists.txt b/frameworks/web-framework-python/web_framework_benchmark/CMakeLists.txt index c5bb30d30..2575cd803 100644 --- a/frameworks/web-framework-python/web_framework_benchmark/CMakeLists.txt +++ b/frameworks/web-framework-python/web_framework_benchmark/CMakeLists.txt @@ -26,20 +26,5 @@ FetchContent_Declare( FetchContent_MakeAvailable(WebFramework) -execute_process( - COMMAND ${CMAKE_COMMAND} -G "Ninja" . - WORKING_DIRECTORY ${webframework_SOURCE_DIR} -) - -execute_process( - COMMAND ${CMAKE_COMMAND} --build . -j - WORKING_DIRECTORY ${webframework_SOURCE_DIR} -) - -execute_process( - COMMAND ${CMAKE_COMMAND} --install . - WORKING_DIRECTORY ${webframework_SOURCE_DIR} -) - add_subdirectory(server) add_subdirectory(executors)