diff options
| author | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2026-05-08 19:41:31 -0400 |
|---|---|---|
| committer | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2026-05-28 12:53:05 +0200 |
| commit | 452e5df38df2a9ad670840e26ebc2b096d7eaa12 (patch) | |
| tree | eebcd2de5382c361052b6f545047685786560790 /builder/Dockerfile | |
| parent | bc8d1a0b75b97156d71579581b4cdfe58c777ed2 (diff) | |
Trezor Safe 7 supportcyjan-trezor-safe7
Diffstat (limited to 'builder/Dockerfile')
| -rw-r--r-- | builder/Dockerfile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/builder/Dockerfile b/builder/Dockerfile index dbf893b..ac57783 100644 --- a/builder/Dockerfile +++ b/builder/Dockerfile @@ -39,9 +39,13 @@ FROM builder_base AS monero_c_base COPY . /w RUN sudo chown -R user:user /w RUN git submodule update --init --force --recursive \ - && ./apply_patches.sh monero \ - && ./apply_patches.sh wownero \ - && ./apply_patches.sh zano + && for coin in monero wownero zano; do \ + ./apply_patches.sh $coin \ + && count=$(find patches/$coin -maxdepth 1 -name "*.patch" | wc -l) \ + && count=$((count + 2)) \ + && cd $coin && git reset HEAD~$count \ + && cd ..; \ + done FROM monero_c_base AS monero_c COPY --from=contrib_simplybs /w/contrib/depends /w/contrib/depends |
