feat: add jetporch to provision machines
This commit is contained in:
parent
a0fb571da1
commit
8c7cdd6a58
14
Dockerfile
14
Dockerfile
@ -103,8 +103,7 @@ RUN curl -sS https://starship.rs/install.sh | sh -s -- --yes \
|
||||
&& mkdir -p /usr/local/lib/docker/cli-plugins \
|
||||
&& curl -L ${DC_URL} -o /usr/local/lib/docker/cli-plugins/docker-compose \
|
||||
&& chmod 750 /usr/local/lib/docker/cli-plugins/docker-compose \
|
||||
&& chgrp --recursive docker /usr/local/lib/docker \
|
||||
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||
&& chgrp --recursive docker /usr/local/lib/docker
|
||||
|
||||
USER coder
|
||||
WORKDIR /home/coder
|
||||
@ -119,7 +118,9 @@ ENV XDG_CONFIG_HOME ${HOME}/.config
|
||||
ENV XDG_DATA_HOME ${HOME}/.local/share
|
||||
ENV XDG_CACHE_HOME ${HOME}/.cache
|
||||
ENV STARSHIP_CONFIG ${XDG_CONFIG_HOME}/starship/config.toml
|
||||
ENV PATH ${LOCAL_BIN_HOME}:$PATH
|
||||
ENV CARGO_HOME ${XDG_DATA_HOME}/cargo
|
||||
ENV RUSTUP_HOME ${XDG_DATA_HOME}/rustup
|
||||
ENV PATH ${LOCAL_BIN_HOME}:${CARGO_HOME}/bin:$PATH
|
||||
|
||||
# NOTE (jpd): the section below exists mainly to handle a project running elixir 1.11.
|
||||
# It allows the usage of openssl 1.1 and a compatible elixir-ls.
|
||||
@ -142,7 +143,12 @@ RUN git clone https://github.com/elixir-lsp/elixir-ls.git ${LOCAL_SRC_HOME}/elix
|
||||
# command line utilities
|
||||
RUN curl https://mise.jdx.dev/install.sh | sh \
|
||||
&& curl -sS https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | bash \
|
||||
&& git clone https://github.com/tmux-plugins/tpm.git ${XDG_CONFIG_HOME}/tmux/plugins/tpm
|
||||
&& git clone https://github.com/tmux-plugins/tpm.git ${XDG_CONFIG_HOME}/tmux/plugins/tpm \
|
||||
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
|
||||
&& git clone https://git.sr.ht/~mpdehaan/jetporch ${LOCAL_SRC_HOME}/jetporch \
|
||||
&& cd ${LOCAL_SRC_HOME}/jetporch \
|
||||
&& make \
|
||||
&& ln -s ${LOCAL_SRC_HOME}/jetporch/target/release/jetp ${LOCAL_BIN_HOME}/
|
||||
|
||||
# git configuration
|
||||
COPY ./patch/kickstart.nvim/updates.patch /tmp
|
||||
|
Loading…
x
Reference in New Issue
Block a user