chore(Docker, dev.yaml): talib
and tulind require
build-essential`
#33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker Image | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
build: | |
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 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build Docker Image | |
run: >- | |
docker build | |
--build-arg DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres | |
--build-arg NEXT_PUBLIC_PROCESSOR_URL=https://dev.opentrader.dev | |
--build-arg NEXT_PUBLIC_PROCESSOR_ENABLE_TRPC=true | |
--build-arg NEXT_PUBLIC_STATIC=true | |
--build-arg ADMIN_PASSWORD=password | |
-t opentrader/opentrader:latest . | |
- name: Push Docker Image | |
run: docker push opentrader/opentrader:latest |