Skip to content

Commit 5ad1063

Browse files
committed
fix: update Dockerfile for ota cmds
1 parent 392f97d commit 5ad1063

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ hack
1616
# ipsw files
1717
*.ipsw
1818
*.zip
19+
*.xz
1920
*.im4p
2021
kernelcache.*
2122
dyld_shared_cache*

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ dyld_shared_cache*
2727
*.plist
2828
System
2929
usr
30+
*.xz
3031

3132
.DS_Store
3233

@@ -42,4 +43,4 @@ checksums.txt.sha1
4243

4344
# Docs
4445
public
45-
*.xz
46+

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /go/src/github.com/blacktop/ipsw
88

99
RUN \
1010
apt-get update \
11-
&& apt-get install -y cmake \
11+
&& apt-get install -y cmake liblzma-dev \
1212
&& cd /tmp \
1313
&& echo "===> Installing lzfse..." \
1414
&& git clone https://github.com/lzfse/lzfse.git \
@@ -45,7 +45,7 @@ LABEL maintainer "https://github.com/blacktop"
4545

4646
RUN buildDeps='libfuse3-dev bzip2 libbz2-dev libz-dev cmake build-essential git libattr1-dev' \
4747
&& apt-get update \
48-
&& apt-get install -y $buildDeps fuse3 unzip \
48+
&& apt-get install -y $buildDeps fuse3 unzip lzma \
4949
&& echo "===> Installing lzfse..." \
5050
&& cd /tmp \
5151
&& git clone https://github.com/lzfse/lzfse.git \

0 commit comments

Comments
 (0)