Somehow deleted the Dockerfile lmao

This commit is contained in:
Lio 2024-11-27 12:16:45 +01:00
parent 478f55d34b
commit cba7e0712b

30
Dockerfile Normal file
View file

@ -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" ]