Created
August 4, 2025 05:04
-
-
Save cemdrk/aadab9c2ce74bd0138a002a45fdfbbf3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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