Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frameworks/web-framework-python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion frameworks/web-framework-python/meta.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"display_name": "WebFramework Python",
"language": "Pyton",
"language": "Python",
"engine": "WebFramework",
"type": "production",
"description": "Web framework in C++ with different language APIs(Python, C, C++, C#)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)