add in neko compose and dockerfile

This commit is contained in:
2026-05-29 09:26:59 +00:00
Unverified
parent aa1b0fa023
commit 823240d456
2 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
FROM ghcr.io/m1k1o/neko/kde:latest
# Switch to root to install packages
USER root
# Update packages and install your chosen browser
# Example for Firefox:
RUN apt-get update && apt-get install -y firefox-esr && apt-get clean
# Alternatively, for Chromium:
# RUN apt-get update && apt-get install -y chromium && apt-get clean
# Switch back to the 'neko' user
USER neko