Skip to content

Commit 96d8126

Browse files
committed
SEARCHGUI:2.8.6: Fixed cmd line missing arg
1 parent 48f9fc0 commit 96d8126

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

searchgui/2.8.6/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ MAINTAINER Felipe da Veiga Leprevost <[email protected]>
2323
RUN ZIP=SearchGUI-2.8.6.zip && \
2424
wget https://github.com/BioDocker/software-archive/releases/download/SearchGUI/$ZIP -O /tmp/$ZIP && \
2525
unzip /tmp/$ZIP -d /home/biodocker/bin/ && \
26-
rm /tmp/$ZIP && \
27-
bash -c 'echo -e "#!/bin/bash\njava -jar /home/biodocker/bin/SearchGUI-2.8.6/SearchGUI-2.8.6.jar $@"' > /home/biodocker/bin/SearchGUI && \
26+
rm /tmp/$ZIP
27+
28+
RUN bash -c 'echo -e "#!/bin/bash\njava -jar /home/biodocker/bin/SearchGUI-2.8.6/SearchGUI-2.8.6.jar \$@"' > /home/biodocker/bin/SearchGUI && \
2829
chmod +x /home/biodocker/bin/SearchGUI
2930

3031
ENV PATH /home/biodocker/bin/SearchGUI:$PATH

0 commit comments

Comments
 (0)