Update Dockerfile

This commit is contained in:
Alexandre
2024-06-26 15:24:52 +02:00
committed by GitHub
parent 97f103be14
commit ac0f152747

View File

@@ -99,31 +99,6 @@ RUN \
apt-get clean all && \
rm -rf /var/lib/apt/lists/*
# Add temporary code
RUN cd /home/pi/BirdNET-Pi && \
git reset --hard || true && \
git pull origin && \
# Species whitelist
git fetch origin pull/110/head:bb && \
# Updated UI
git fetch origin pull/116/head:cc && \
# Disk usage
git fetch origin pull/121/head:dd && \
git checkout main && \
git checkout -b f-merge-prs && \
git merge bb --no-edit && \
git stash && \
git merge cc --no-edit && \
git stash && \
git merge dd --no-edit && \
git stash && \
git checkout main && \
git merge f-merge-prs && \
git branch -d bb && \
git branch -d cc && \
git branch -d dd && \
git branch -d f-merge-prs
##################
# 2 Modify Image #
##################