FROM quay.io/linuxserver.io/code-server:4.22.1 #LABEL build_version="" LABEL maintainer="OCram85" ARG VERSION LABEL build_version="${VERSION}" LABEL org.opencontainers.image.authors="OCram85" LABEL org.opencontainers.image.vendor="OCram85" LABEL org.opencontainers.image.title="Arkanum" LABEL org.opencontainers.image.description="Code-Server container optimized for daily use." LABEL org.opencontainers.image.licenses="AGPL-3.0" ARG TAG LABEL org.opencontainers.image.version="${TAG}" LABEL org.opencontainers.image.url="https://gitea.ocram85.com/CodeServer/arkanum" LABEL org.opencontainers.image.source="https://gitea.ocram85.com/CodeServer/arkanum.git" LABEL org.opencontainers.image.documentation="https://gitea.ocram85.com/CodeServer/arkanum" RUN \ echo "**** install starship prompt ****" && \ curl -sS -o /tmp/install.sh https://starship.rs/install.sh && \ chmod +x /tmp/install.sh && \ /tmp/install.sh --verbose --force --version latest && \ rm -f /tmp/install.sh && \ echo "eval \"\$(starship init bash)\"" >> /etc/bash.bashrc ENV STARSHIP_CONFIG=/etc/starship.toml COPY starship.toml /etc/starship.toml ADD gitconfig-system /etc/gitconfig RUN \ echo "**** setup git ****" && \ # using prepared systemwide config file instead. #git config --system credential.helper store && \ echo 'source /usr/share/bash-completion/completions/git' >> /etc/bash.bashrc ADD arkanum /usr/bin/ ADD arkanum-completion /etc/bash_completion.d/ RUN \ chmod +x /usr/bin/arkanum && \ chmod +x /etc/bash_completion.d/arkanum-completion && \ echo 'source /etc/bash_completion.d/arkanum-completion' >> /etc/bash.bashrc && \ touch "$HOME/enable_motd" && \ echo "if [[ ! -e \"$HOME/data/User/settings.json\" ]]; then arkanum config install-extensions && arkanum config reset-codesettings && \ echo -e \"🧙 \\e[32markanum\\e[0m: Please reload Arkanum to finalize the setup...\" && read foo; fi" >> /etc/bash.bashrc && \ echo "if [[ -e \"$HOME/enable_motd\" ]]; then echo -e \"Use 🧙 \\e[32m'arkanum'\\e[0m to install missing runtimes like dotnet or NodeJs.\"; fi" >> /etc/bash.bashrc WORKDIR /app/code-server/lib/vscode/out/vs/workbench ADD FiraCode/fonts/* ./fonts/ ADD FiraCode/fonts.css ./ RUN cat fonts.css >> workbench.web.main.css