mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
23 lines
556 B
Docker
23 lines
556 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache -u busybox
|
|
RUN apk add --no-cache -u zlib
|
|
RUN apk add --no-cache bash
|
|
RUN apk add --no-cache libstdc++
|
|
RUN apk add --no-cache boost
|
|
RUN apk add --no-cache icu-libs
|
|
RUN apk add --no-cache curl
|
|
RUN apk add --no-cache libunwind
|
|
RUN apk add --no-cache gdb
|
|
RUN apk add --no-cache libxml2
|
|
RUN apk add --no-cache pcre2
|
|
RUN apk add --update coreutils
|
|
|
|
COPY install*.sh /nano-service-installers/
|
|
COPY entry.sh /entry.sh
|
|
|
|
RUN chmod +x entry.sh /nano-service-installers/*
|
|
RUN ln -s entry.sh cp-nano-agent
|
|
|
|
CMD [ "/cp-nano-agent" ]
|