initial commit

main
pantonshire 1 month ago
commit 48cd013c9c

@ -0,0 +1,6 @@
FROM docker.io/library/ubuntu:latest
ENV FORCE_UNSAFE_CONFIGURE 1
RUN apt update && \
apt install -y build-essential rsync gawk zip wget python3 python3-distutils file \
libncurses-dev vim ripgrep git swig python3-setuptools

@ -0,0 +1,3 @@
#!/bin/bash
podman run -v ./data:/sdk -w /sdk/openwrt --rm -it localhost/openwrt

@ -0,0 +1,6 @@
#!/bin/bash
podman image exists openwrt || podman build -t openwrt .
mkdir -p data
git clone https://git.openwrt.org/openwrt/openwrt.git data/openwrt
Loading…
Cancel
Save