Skip to content

Commit cc41120

Browse files
author
Johannes Griss
committed
Fixed a bug in the Dockerfile which prevented parametes to be passed on.
1 parent 96a219e commit cc41120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spectra-cluster-cli/v1.1.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN VERSION=1.1.2 && \
2121
wget https://github.com/spectra-cluster/spectra-cluster-cli/releases/download/spectra-cluster-cli-${VERSION}/$ZIP -O /tmp/$ZIP && \
2222
unzip /tmp/$ZIP -d /home/biodocker/bin/ && \
2323
rm /tmp/$ZIP && \
24-
bash -c 'echo -e "#!/bin/bash\njava -jar /home/biodocker/bin/spectra-cluster-cli-1.1.2.jar $@" > /home/biodocker/bin/spectra-cluster-cli' && \
24+
echo -e '#!/bin/bash\njava -jar /home/biodocker/bin/spectra-cluster-cli-1.1.2.jar $@' > /home/biodocker/bin/spectra-cluster-cli && \
2525
chmod +x /home/biodocker/bin/spectra-cluster-cli
2626

2727
ENV PATH /home/biodocker/bin/spectra-cluster-cli:$PATH

0 commit comments

Comments
 (0)