mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-14 15:54:20 +00:00
Jakub Sokołowski
fcee52757e
We've been using `statusteam` Docker Hub org for a while now which was never intended for public use, and we should be using `wakuorg` instead. I've also updated references to `statusteam` in documentation and scripts. Signed-off-by: Jakub Sokołowski <jakub@status.im>
12 lines
263 B
Bash
Executable File
12 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker run -it --rm \
|
|
--cap-add SYS_ADMIN \
|
|
--security-opt apparmor:unconfined \
|
|
--device /dev/fuse \
|
|
-u jenkins:$(id -g) \
|
|
-v "${PWD}:/go-waku" \
|
|
-w /go-waku \
|
|
wakuorg/gowaku-linux-pkgs:latest \
|
|
/go-waku/scripts/linux/build-pkgs.sh
|