Skip to content

Commit

Permalink
Fix chmod command to be singularity compatible
Browse files Browse the repository at this point in the history
When using this docker image under singularity the fastqc
command didn't have permissions to run. #34
  • Loading branch information
johnbradley committed Feb 1, 2018
1 parent 73999f5 commit fb22ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastqc/0.11.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WORKDIR /tmp
RUN curl -SLO ${FASTQC_URL}/${FASTQC_RELEASE} && unzip ${FASTQC_RELEASE} -d ${DEST_DIR} && rm ${FASTQC_RELEASE}

# Make the wrapper script executable
RUN chmod +x ${DEST_DIR}/FastQC/fastqc
RUN chmod a+x ${DEST_DIR}/FastQC/fastqc

# Include it in PATH
ENV PATH ${DEST_DIR}/FastQC:$PATH

0 comments on commit fb22ef4

Please sign in to comment.