You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a public fork of the [m1k1o/neko](https://github.com/m1k1o/neko) repository.
4
+
5
+
## Overview
6
+
7
+
We maintain this fork to provide a customized `base` image that is used in our browser images at [onkernel/kernel-images](https://github.com/onkernel/kernel-images/tree/main/images).
8
+
9
+
## Building
10
+
11
+
To build images from this fork, use the build script from the repository root:
12
+
13
+
```bash
14
+
# Build the base image
15
+
./build base
16
+
17
+
# Build with custom repository and tag
18
+
./build base --repository your-repo/neko --tag custom-tag
19
+
```
20
+
21
+
The `--repository` and `--tag` options allow you to specify exactly which image you're building, making it easy to reference back to specific builds in `kernel-images`.
22
+
23
+
## Keeping in sync with upstream
24
+
25
+
To merge the latest changes from the upstream neko repository:
26
+
27
+
```bash
28
+
# Run the sync script to create a new branch and merge upstream changes
0 commit comments