Skip to content

Commit

Permalink
Add multiarchitectuee dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjtaylor committed Nov 4, 2024
1 parent ac03ec2 commit 0271614
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ RUN apt-get update && \
python3-dev && \
rm -rf /var/lib/apt/lists/*

# Add support for multiple architectures (specifically for ARM64)
RUN dpkg --add-architecture amd64 && \
apt-get update && \
apt-get install -y libc6:amd64 && \
rm -rf /var/lib/apt/lists/*

# Upgrade pip and install synapseclient
RUN pip install --no-cache-dir --upgrade pip && \
pip install synapseclient==4.6.0
Expand Down

0 comments on commit 0271614

Please sign in to comment.