Switch docker build to use local context rather than pulling

This commit is contained in:
Donncha Ó Cearbhaill
2024-10-23 14:56:35 +02:00
parent 62cdfa1b59
commit 319bc7e9cd
4 changed files with 15 additions and 13 deletions

View File

@@ -18,9 +18,10 @@ RUN apk add --no-cache \
sqlite
# Install mvt
COPY ./ mvt
RUN apk add --no-cache git \
&& PIP_NO_CACHE_DIR=1 pip3 install git+https://github.com/mvt-project/mvt.git@main \
&& apk del git
&& PIP_NO_CACHE_DIR=1 pip3 install ./mvt \
&& apk del git && rm -rf ./mvt
# Installing ABE
ADD https://github.com/nelenkov/android-backup-extractor/releases/download/master-20221109063121-8fdfc5e/abe.jar /opt/abe/abe.jar