Compare commits

...

3 Commits

Author SHA1 Message Date
bretello a275d1fefc
dockerfile: replace bretellofier pip with AUR install 2023-12-28 17:57:44 +01:00
bretello 651a14135b
dockerfile: replace pylint with ruff 2023-12-28 17:38:47 +01:00
bretello 1038647c2c
ci: fix docker build 2023-12-28 17:31:26 +01:00
2 changed files with 7 additions and 10 deletions

View File

@ -5,14 +5,13 @@ when:
steps:
build:
name: build docker image
image: plugins/docker
image: woodpeckerci/plugin-docker-buildx
settings:
repo: registry.decapod.one/brethil/dotfiles
registry: registry.decapod.one
auto_tag: true
repo: registry.decapod.one/brethil/dotfiles
dockerfile: Dockerfile
tags:
- latest
dry_run: true
# output: type=oci,dest=${CI_REPO_OWNER}-hello.tar
notify:
image: registry.decapod.one/toolchain:latest

View File

@ -12,7 +12,7 @@ RUN pacman --noconfirm -Syu && pacman --noconfirm -Sy \
ipython \
python-pip \
htop \
python-pylint \
python-ruff \
python-virtualenv \
bash-language-server \
&& rm -rf /var/cache/pacman/pkg/*
@ -50,8 +50,8 @@ RUN chsh -s /bin/zsh
COPY --from=yay_builder /home/build/yay/*zst /tmp/
RUN pacman --noconfirm -U /tmp/*zst && rm -rf /tmp/*zst
# bretellofier
RUN pip --no-cache install --upgrade pip git+https://git.decapod.one/brethil/bretellofier
# telegram notifications
RUN yay -S bretellofier
# antibody
RUN curl -sL https://git.io/antibody | sh -s - -b /usr/local/bin
@ -60,8 +60,6 @@ RUN curl -sL https://git.io/antibody | sh -s - -b /usr/local/bin
RUN curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
RUN git clone https://git.decapod.one/brethil/dotfiles ${DOTFILES}
COPY . ${DOTFILES}