From cba7e0712b6b8985cd235fdf18f2a4546a554c3a Mon Sep 17 00:00:00 2001 From: Lio Date: Wed, 27 Nov 2024 12:16:45 +0100 Subject: [PATCH] Somehow deleted the Dockerfile lmao --- Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1d3327b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,30 @@ +FROM alpine:3.20.3 +RUN apk add --no-cache \ + # QoL + git \ + zsh \ + bat \ + exa \ + rsync \ + shadow \ + neofetch \ + tailscale \ + # JS + yarn \ + deno \ + # Pyro + rust \ + cargo \ + go +RUN ln -f /bin/zsh /bin/sh +RUN ln -f /bin/zsh /bin/ash + +COPY ./dotfiles /root/.files + RUN ln -s /root/.files/.zshrc /root/.zshrc + RUN cp /root/.files/zsh/p10k.zsh /root/.p10k.zsh + +RUN source /root/.zshrc + + +WORKDIR /root +ENTRYPOINT [ "/bin/zsh" ] \ No newline at end of file