-
Notifications
You must be signed in to change notification settings - Fork 19
Dockerfile updates to add libffi-dev to resolve cffi dependancy errors #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
First test to create Docker image
V2 to add path to Dockerfile
V3 moving build context
V7 Rewrite to include push and caching
v9 - final single image build
Complete Script to build noble, alpine and slim images for the four main architectures
Added Build Date
r rebase instead of merge (cleaner history)
git rebase upstream/main
git push origin main
---
🧩 2. If you’re updating a submodule or external script repo inside your
project
You mentioned before that your Docker images depend on a script from
another Git repo — if you’ve added that as a submodule or use it as a
reference, use:
git submodule update --remote --merge
cd path/to/submodule
git fetch origin
git checkout main
git pull origin main
cd ..
git add path/to/submodule
git commit -m "Update submodule to latest upstream"
---
🔄 3. If you want to pull all branches/tags from upstream into your fork
git fetch upstream --prune
git checkout main
git merge upstream/main
git push origin main
git fetch upstream --tags
git push origin --tags
---
⚙️ 4. If you want to automate this in CI (like GitHub Actions)
Example snippet for your workflow YAML:
- name: Update from upstream
run: |
git remote add upstream https://github.com/ORIGINAL_OWNER/REPO.git
git fetch upstream
git checkout main
git merge upstream/main
git push origin main
---
Would you like me to tailor these commands to your
specific setup — e.g., the repo that builds Docker
images from another script repo — so that the
update triggers automatically when the upstream
changes?q
|
this should fix springfall2008/batpred#2842 #70 |
|
Just reviewing this, I wonder if you can help updated?
|
|
I think this was done before you made those changes Can we just reject this? I am not sure its required now we know that Home assistant is no longer going to support armv7 and unless I am missing them I am not seeing many issues with this any more. Also I don't want to add loads of commits to the main addon git. In the New year I am planning on making the Docker images more aligned with the home assistant addons and use s6 overlay so I may add some changes then |
Not sure if this did what I wanted, jus wanted to update Dockerfile & Dockerfile.standalone