From 77219e9ef0684b31f9f0b14fb0b6b40bf83de4d5 Mon Sep 17 00:00:00 2001 From: bludnic Date: Sun, 19 May 2024 01:26:22 +0100 Subject: [PATCH] chore(Docker, dev.yaml): `talib` and tulind` require `build-essential` Solves: "/bin/sh: make: not found" when building the image with Github Actions --- .github/workflows/dev.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 46238f9f..6662bb2f 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -10,6 +10,12 @@ jobs: runs-on: ubuntu-latest steps: + - name: Install build tools and Python + run: | + sudo apt-get update + sudo apt-get install -y build-essential python3 python3-dev python3-pip + sudo ln -s /usr/bin/python3 /usr/bin/python # Create a symlink for `python` + - name: Checkout code uses: actions/checkout@v4