Skip to content

Commit

Permalink
add back sha512 check
Browse files Browse the repository at this point in the history
  • Loading branch information
sorelfitzgibbon committed Oct 28, 2024
1 parent 4617256 commit 11af89d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM ubuntu:23.04

ARG MUSE_VERSION=2.1.2
ARG MUSE_SHA512=49560abc7e14661be08a5d93e25f38c2e6431bf8c99782324c7b336c6b82bbd7e34ecbeb59299c558eb582288518e783e0ee6f7869503f1d4dc57ca3ea0c1223
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y --no-install-recommends \
Expand All @@ -11,6 +12,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

WORKDIR /src/
RUN wget https://github.com/wwylab/MuSE/archive/refs/tags/v${MUSE_VERSION}.zip \
&& echo "${MUSE_SHA512} v${MUSE_VERSION}.zip" | sha512sum --strict -c \
&& unzip v${MUSE_VERSION}.zip && rm v${MUSE_VERSION}.zip

RUN cd /src/MuSE-${MUSE_VERSION} && bash ./install_muse.sh
Expand Down

0 comments on commit 11af89d

Please sign in to comment.