Merge pull request #989 from Hestia-Homes/caveman-claude

Caveman claude
This commit is contained in:
Jun-te Kim 2026-04-17 12:31:54 +01:00 committed by GitHub
commit c499a7c4c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,4 +64,13 @@ RUN apt install -y wget gnupg2 lsb-release
RUN echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg.list
RUN wget -qO - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
RUN apt update
RUN apt install -y postgresql-14
RUN apt install -y postgresql-14
# Install Claude
USER ${USER}
RUN curl -fsSL https://claude.ai/install.sh | bash \
&& export PATH="/home/${USER}/.local/bin:${PATH}" \
&& claude plugin marketplace add JuliusBrussee/caveman \
&& claude plugin install caveman@caveman
ENV PATH="/home/vscode/.local/bin:${PATH}"
USER root