mirror of
https://github.com/openappsec/attachment.git
synced 2025-08-12 21:05:59 +03:00
* add gateway * fix right command * fix CMakeLists * add uzip package --------- Co-authored-by: wiaamm <wiaamm@checkpoint.com>
14 lines
540 B
CMake
14 lines
540 B
CMake
add_custom_command(
|
|
OUTPUT ${CMAKE_INSTALL_PREFIX}/nginx-docker.img
|
|
COMMAND docker build -t nginx-docker ${CMAKE_INSTALL_PREFIX}
|
|
COMMAND docker tag nginx-docker ${OUTPUT_DOCKER_IMAGE}
|
|
COMMAND docker image save nginx-docker -o ${CMAKE_INSTALL_PREFIX}/nginx-docker.img
|
|
)
|
|
|
|
add_custom_target(docker DEPENDS ${CMAKE_INSTALL_PREFIX}/nginx-docker.img)
|
|
|
|
add_subdirectory(openappsec-envoy-attachments)
|
|
add_subdirectory(openappsec-waf-webhook)
|
|
add_subdirectory(openappsec-kong-plugin)
|
|
add_subdirectory(openappsec-kong-gateway-plugin)
|