arkanum/Dockerfile
OCram85 d84a3b7e6e
All checks were successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/master Pipeline was successful
ci/woodpecker/push/next Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/master Pipeline was successful
ci/woodpecker/pr/next Pipeline was successful
add individual install scripts
2022-11-04 11:50:01 +01:00

21 lines
620 B
Docker

FROM linuxserver/code-server:4.7.1
RUN \
echo "**** install starshipt prompt ****" && \
curl -sS https://starship.rs/install.sh | sh -s -- -f && \
echo "eval \"\$(starship init bash)\"" >> /etc/bash.bashrc
ENV STARSHIP_CONFIG=/etc/starship.toml
COPY starship.toml /etc/starship.toml
RUN \
echo "**** setup git ****" && \
git config --system credential.helper store && \
echo 'source /usr/share/bash-completion/completions/git' >> /etc/bash.bashrc
ADD install/install* /usr/bin/
RUN \
chmod +x /usr/bin/install-* && \
echo "Install required dev runtimes with the 'install-*' scripts." >> /etc/bashrc