Skip to content

Commit

Permalink
create missing directory in docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
backmari committed Jan 25, 2024
1 parent 2beacd5 commit 92739a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.autoreducer
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN dnf install -y https://github.com/neutrons/post_processing_agent/releases/do
ARG DATA_TARBALL=/tmp/SNSdata.tar.gz
COPY SNSdata.tar.gz ${DATA_TARBALL}
RUN ls ${DATA_TARBALL}
RUN cd /SNS && tar xzf ${DATA_TARBALL}
RUN mkdir /SNS/ && cd /SNS && tar xzf ${DATA_TARBALL}

# create startup script
RUN echo "#!/bin/bash" > /usr/bin/run_postprocessing && \
Expand Down

0 comments on commit 92739a7

Please sign in to comment.