Somehow deleted the Dockerfile lmao
This commit is contained in:
parent
478f55d34b
commit
cba7e0712b
1 changed files with 30 additions and 0 deletions
30
Dockerfile
Normal file
30
Dockerfile
Normal 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" ]
|
Loading…
Add table
Reference in a new issue