Skip to content

Commit f585c24

Browse files
Fix errors in Dockerfile
1 parent f23c606 commit f585c24

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

Dockerfile

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,14 @@ COPY requirements.txt /tmp/requirements.txt
2727
RUN uv venv /opt/venv --python 3.12 && \
2828
uv pip install --python /opt/venv/bin/python -r /tmp/requirements.txt
2929

30-
# cromwell
31-
ARG CROMWELL_VERSION=90
32-
ARG CROMWELL_SHA256=d90e46f60f430ff627222c97b950c43f1ededc992619e0aeceaa334690d06073
33-
RUN wget -q -O $APP_HOME/cromwell/cromwell.jar \
34-
"https://github.com/broadinstitute/cromwell/releases/download/${CROMWELL_VERSION}/cromwell-${CROMWELL_VERSION}.jar" && \
35-
echo "${CROMWELL_SHA256} /tmp/cromwell.jar" | sha256sum -c -
36-
3730
# working dir
3831
WORKDIR $APP_HOME
3932

33+
# cromwell
34+
ARG CROMWELL_VERSION=92
35+
ARG CROMWELL_SHA256=d90e46f60f430ff627222c97b950c43f1ededc992619e0aeceaa334690d06073
36+
RUN wget -q -O $APP_HOME/cromwell.jar https://github.com/broadinstitute/cromwell/releases/download/92/cromwell-92.jar
37+
4038
# Run as non-root - movana
4139
RUN useradd --create-home --shell /bin/bash movana && \
4240
chown -R movana:movana $APP_HOME

0 commit comments

Comments
 (0)