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: steps:
build: build:
name: build docker image name: build docker image
image: plugins/docker image: woodpeckerci/plugin-docker-buildx
settings: settings:
repo: registry.decapod.one/brethil/dotfiles
registry: registry.decapod.one registry: registry.decapod.one
auto_tag: true auto_tag: true
repo: registry.decapod.one/brethil/dotfiles dry_run: true
dockerfile: Dockerfile # output: type=oci,dest=${CI_REPO_OWNER}-hello.tar
tags:
- latest
notify: notify:
image: registry.decapod.one/toolchain:latest image: registry.decapod.one/toolchain:latest

View File

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