Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update README instructions, as well as docker-compose.yaml and Makefile #17

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading