Add Dockerfile

I added this so that I could run a nak bunker on my server alongside my other containers. Thought it might be useful for others.
This commit is contained in:
mplorentz
2025-07-02 23:28:36 -03:00
committed by fiatjaf
parent cc526acb10
commit fea23aecc3
3 changed files with 93 additions and 0 deletions

View File

@@ -304,6 +304,14 @@ ffmpeg -f alsa -i default -f webm -t 00:00:03 pipe:1 | nak blossom --server blos
```shell
~> cat all.jsonl | nak filter -k 1111 > filtered.jsonl
```
### run nak in Docker
If you want to run nak inside a container (i.e. to run nak as a server, or to avoid installing the Go toolchain) you can run it with Docker:
```shell
docker build -t nak .
docker run nak event
```
## contributing to this repository