Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ RUN apt-get update && apt-get install -y \
libssl-dev \
libffi-dev \
python3-dev \
git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Copy requirements and install dependencies
COPY flask_backend/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Install pymobiledevice3 directly from GitHub to ensure we get the latest version with all modules
RUN pip install --no-cache-dir -r requirements.txt && \
pip install --no-cache-dir git+https://github.com/doronz88/pymobiledevice3.git

# Copy application code
COPY flask_backend/ .
Expand Down
Loading