From 7ab30ce7c30e20246112d31829b937247a18729d Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jan 2025 09:06:08 +0000 Subject: [PATCH] feat: add bash to image --- .forgejo/workflows/push-next.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml index 391d3b7..6c800c1 100644 --- a/.forgejo/workflows/push-next.yml +++ b/.forgejo/workflows/push-next.yml @@ -7,7 +7,7 @@ jobs: runs-on: docker container: image: - git.kemitix.net/kemitix/rust:latest + git.kemitix.net/kemitix/rust:v3.1.0 strategy: matrix: toolchain: diff --git a/Dockerfile b/Dockerfile index 7e8529e..34f2553 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ LABEL org.opencontainers.image.source=https://git.kemitix.net/kemitix/rust # openssl-dev - build dependency for git-next # dbus-dev - linux os interop (e.g. desktop notifications) # git - git -RUN apk add nodejs curl clang pkgconfig mold openssl-dev dbus-dev git +RUN apk add nodejs curl clang pkgconfig mold openssl-dev dbus-dev git bash RUN curl -L https://github.com/cargo-bins/cargo-binstall/releases/download/v1.10.19/cargo-binstall-x86_64-unknown-linux-musl.tgz -o cargo-binstall.tgz && \ tar -xzf cargo-binstall.tgz && \