Skip to content

Commit

Permalink
chore: update README instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
j2ein committed Sep 20, 2024
1 parent 03bea5b commit d6c88ce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ check-go-version:

.PHONY: deps
deps: check-go-version ## Get the dependencies
@go get -v -d ./...
@go get -v ./...

.PHONY: upgrade-deps
upgrade-deps: check-go-version ## Upgrade the dependencies
@go get -u -v -d ./...
@go get -u -v ./...

.PHONY: tidy-deps
tidy-deps: check-go-version ## Remove unused dependencies
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ If you registered the device via the stepper in the tarpit, port 22 is blocked f

## Build

1. Go must be installed on the machine. Please follow [this instruction](https://go.dev/doc/install) from the official Go website to install the latest version.

1. Make sure that the `bin` folder of your Go installation is part of your `PATH`, e.g. `export PATH+=:~/go/bin`.

1. Building the binary requires the libpcap header files, which are part of the `libpcap-dev` package on Debian-based distros. Adjust the command according to your package manager.

```bash
Expand All @@ -81,7 +85,6 @@ If you registered the device via the stepper in the tarpit, port 22 is blocked f
make generate-deps
```

1. Make sure that the `bin` folder of your Go installation is part of your `PATH`, e.g. `export PATH+=:~/go/bin`.
1. Build the binary.

```bash
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3'

services:
bee:
image: ghcr.io/cybersecurity-and-enterprise-security/bee:main
Expand Down

0 comments on commit d6c88ce

Please sign in to comment.