Skip to content

Commit

Permalink
update with RPM instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
shawndwells committed Jul 31, 2020
1 parent 3beadb0 commit bf86f75
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@ a drop-in replacement for development on Linux hosts, but has not yet been teste
CLOUDSIM_CID="YOURCID"
```

This could be replaced with a sed one-liner such as ``sed -i s/YOURCID/xyz/r entrypoint.sh``. Try not to commit your CID to your Git repo!
This could be replaced with a sed one-liner such as ``sed -i 's/YOURCID/xyz/r' entrypoint.sh``. Try not to commit your CID to your Git repo!

* Download the RHEL/CentOS/Oracle 8 sensor from [https://falcon.crowdstrike.com/hosts/sensor-downloads](https://falcon.crowdstrike.com/hosts/sensor-downloads) and place into this directory. The ``Dockerfile`` references this file and copies it into the container during ``docker build``:

```shell
COPY ./falcon-sensor-5.33.0-9808.el8.x86_64.rpm /tmp/falcon-agent.rpm

RUN yum -y install --disablerepo=* --enablerepo=ubi-8-appstream --enablerepo=ubi-8-baseos /tmp/falcon-agent.rpm && yum -y clean all && rm -rf /var/cache/yum && rm /tmp/falcon-agent.rpm
```

At some point we'll parameterize the RPM name.


## Build
Build the container using the [included Dockerfile](https://github.com/CrowdStrike/dockerfiles/blob/master/Dockerfile) through a command such as:
Expand Down

0 comments on commit bf86f75

Please sign in to comment.