Skip to content

Commit 90f505b

Browse files
author
Johannes Griss
committed
Makes run_pia.sh executable, otherwise the container fails.
1 parent 9cc521e commit 90f505b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pia/1.3.8/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@ ENV ZIP_FILE=pia-1.3.8.zip \
2424
PIA_PATH=/home/biodocker/pia \
2525
PIA_JAR=/home/biodocker/pia/pia-1.3.8.jar
2626

27+
COPY ./runpia.sh $USER_HOME/bin/
28+
29+
RUN chmod +x $USER_HOME/bin/runpia.sh
30+
2731
USER biodocker
2832

2933
RUN set -x \
3034
&& wget $URL/$ZIP_FILE -O $USER_HOME/$ZIP_FILE \
3135
&& unzip $USER_HOME/$ZIP_FILE -d $PIA_PATH \
3236
&& rm $USER_HOME/$ZIP_FILE
3337

34-
COPY ./runpia.sh $USER_HOME/bin/
35-
3638
WORKDIR /data/
3739

3840
ENTRYPOINT ["runpia.sh"]

0 commit comments

Comments
 (0)