Skip to content

Commit

Permalink
fix unzip destination path
Browse files Browse the repository at this point in the history
  • Loading branch information
DininduSenanayake committed Jul 28, 2024
1 parent 73586bf commit ffff94f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ENV LANG en_NZ.utf8
# download the required data into the container image and make sure permission are ok
RUN wget -nv https://github.com/GenomicsAotearoa/introduction-to-shell/releases/download/2024-July/shell_data.zip \
-O /var/lib/shell_data.zip \
&& unzip /var/lib/shell_data.zip -C /var/lib \
&& unzip /var/lib/shell_data.zip -d /var/lib \
&& rm -f /var/lib/shell_data.zip \
&& chown -R root:root /var/lib/shell_data \
&& chmod -R o+rX /var/lib/shell_data
Expand Down
2 changes: 1 addition & 1 deletion submit.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ script:
native:
container:
name: "introshell"
image: "ghcr.io/nesi/training-environment-jupyter-introduction-shell-app:v0.2.0"
image: "ghcr.io/nesi/training-environment-jupyter-introduction-shell-app:v0.3.0"
command: ["/bin/bash","-l","<%= staged_root %>/job_script_content.sh"]
working_dir: "<%= Etc.getpwnam(ENV['USER']).dir %>"
restart_policy: 'OnFailure'
Expand Down

0 comments on commit ffff94f

Please sign in to comment.