| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=22.04 |
| ADD file:2fd2684e989d275c95e18b6f6e9ccf57ca1382ecd8faf4a66961ede28102dedf in / |
| CMD ["/bin/bash"] |
| RUN /bin/sh -c apt update && apt dist-upgrade -y && apt install curl -y # buildkit |
| WORKDIR /opt/crowdstrike |
| COPY crowdstrike-cs-falconhoseclient_2.14.0_amd64.deb /tmp/cs.deb # buildkit |
| COPY startcs.sh /opt/crowdstrike/cs.sh # buildkit |
| RUN /bin/sh -c chmod +x /tmp/cs.deb # buildkit |
| RUN /bin/sh -c chmod +x /opt/crowdstrike/cs.sh # buildkit |
| RUN /bin/sh -c dpkg -i /tmp/cs.deb # buildkit |
| RUN /bin/sh -c mkdir /opt/crowdstrike/input # buildkit |
| CMD ["/bin/bash" "/opt/crowdstrike/cs.sh"] |