Skip to content

Commit

Permalink
Add libatlas to all docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Jessop authored and Mark Jessop committed Feb 11, 2023
1 parent 8aec301 commit c7df098
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,17 @@ EXPOSE 5001/tcp

# Upgrade base packages and install application dependencies.
RUN case $(uname -m) in \
"armv6l") extra_packages="libatlas3-base libgfortran5" ;; \
"armv7l") extra_packages="libatlas3-base libgfortran5" ;; \
"armv6l") extra_packages="" ;; \
"armv7l") extra_packages="" ;; \
esac && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
libeccodes0 \
libgeos-c1v5 \
libglib2.0-0 \
${extra_packages} \
libatlas3-base \
libgfortran5 \
tini && \
rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit c7df098

Please sign in to comment.