Skip to content

Instantly share code, notes, and snippets.

@cemdrk
Created August 4, 2025 05:04
Show Gist options
  • Select an option

  • Save cemdrk/aadab9c2ce74bd0138a002a45fdfbbf3 to your computer and use it in GitHub Desktop.

Select an option

Save cemdrk/aadab9c2ce74bd0138a002a45fdfbbf3 to your computer and use it in GitHub Desktop.
FROM lscr.io/linuxserver/chromium:latest
USER root
COPY ./conf/autostart /defaults/autostart
RUN chmod +x /defaults/autostart
# install node 22 (current LTS)
RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - \
&& apt-get update && apt-get install -y nodejs
# install mcp
RUN mkdir /.app && chown abc:abc /.app
COPY --chown=abc:abc ./mcp/package*.json /.app
RUN cd /.app && npm install --verbose
COPY --chown=abc:abc ./mcp /.app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment