Skip to content

Commit

Permalink
chore(Docker, dev.yaml): talib and tulind require build-essential`
Browse files Browse the repository at this point in the history
Solves: "/bin/sh: make: not found" when building the image with Github Actions
  • Loading branch information
bludnic committed May 19, 2024
1 parent 02af17d commit 77219e9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 77219e9

Please sign in to comment.