diff --git a/gitea-pods-docker/Dockerfile b/gitea-pods-docker/Dockerfile index 25cc5e1..b405b05 100644 --- a/gitea-pods-docker/Dockerfile +++ b/gitea-pods-docker/Dockerfile @@ -31,13 +31,14 @@ RUN apt-get update && apt-get install -y curl tar git gcc && \ curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz && \ tar -C /opt -xvf nvim-linux64.tar.gz +#oh my zsh +RUN apt-get update && apt-get install -y zsh && \ + sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" + #nvim config RUN mkdir .config && cd .config && \ git clone https://git.lorenzzz.dev/lorenzhohermuth/nvim.git && pwd -#font -RUN curl -OL https://github.com/ryanoasis/nerd-fonts/releases/latest/download/JetBrainsMono.tar.xz - COPY --from=builder /root/ttyd/dist/ttyd /usr/bin/ttyd EXPOSE 7681