Skip to content

Commit

Permalink
fix(rmd): move bin in quarto install only
Browse files Browse the repository at this point in the history
  • Loading branch information
Souheil-Yazji committed Oct 2, 2024
1 parent 1c5af93 commit cddc86c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ on:
# Execute at 2am EST every day
- cron: '0 21 * * *'
push:
branches:
- 'master'
pull_request:
types:
- 'opened'
Expand Down Expand Up @@ -73,6 +71,7 @@ jobs:
- sas
- jupyterlab-cpu
- jupyterlab-pytorch
- remote-desktop
# - jupyterlab-tensorflow removed from build. https://jirab.statcan.ca/browse/BTIS-421
needs: pre-build-checks
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion docker-bits/4_CLI.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ RUN \
&& echo "${QUARTO_SHA} quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" | sha256sum -c - \
&& tar -xf quarto-${QUARTO_VERSION}-linux-amd64.tar.gz \
&& chmod +x quarto-${QUARTO_VERSION} \
&& sudo mv ./quarto-${QUARTO_VERSION} /usr/local/bin/quarto
&& sudo mv ./quarto-${QUARTO_VERSION}/bin/quarto /usr/local/bin/
2 changes: 1 addition & 1 deletion output/jupyterlab-cpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ RUN \
&& echo "${QUARTO_SHA} quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" | sha256sum -c - \
&& tar -xf quarto-${QUARTO_VERSION}-linux-amd64.tar.gz \
&& chmod +x quarto-${QUARTO_VERSION} \
&& sudo mv ./quarto-${QUARTO_VERSION} /usr/local/bin/quarto
&& sudo mv ./quarto-${QUARTO_VERSION}/bin/quarto /usr/local/bin/

###############################
### docker-bits/5_DB-Drivers.Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion output/jupyterlab-pytorch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ RUN \
&& echo "${QUARTO_SHA} quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" | sha256sum -c - \
&& tar -xf quarto-${QUARTO_VERSION}-linux-amd64.tar.gz \
&& chmod +x quarto-${QUARTO_VERSION} \
&& sudo mv ./quarto-${QUARTO_VERSION} /usr/local/bin/quarto
&& sudo mv ./quarto-${QUARTO_VERSION}/bin/quarto /usr/local/bin/

###############################
### docker-bits/5_DB-Drivers.Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion output/jupyterlab-tensorflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ RUN \
&& echo "${QUARTO_SHA} quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" | sha256sum -c - \
&& tar -xf quarto-${QUARTO_VERSION}-linux-amd64.tar.gz \
&& chmod +x quarto-${QUARTO_VERSION} \
&& sudo mv ./quarto-${QUARTO_VERSION} /usr/local/bin/quarto
&& sudo mv ./quarto-${QUARTO_VERSION}/bin/quarto /usr/local/bin/

###############################
### docker-bits/5_DB-Drivers.Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion output/remote-desktop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ RUN \
&& echo "${QUARTO_SHA} quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" | sha256sum -c - \
&& tar -xf quarto-${QUARTO_VERSION}-linux-amd64.tar.gz \
&& chmod +x quarto-${QUARTO_VERSION} \
&& sudo mv ./quarto-${QUARTO_VERSION} /usr/local/bin/quarto
&& sudo mv ./quarto-${QUARTO_VERSION}/bin/quarto /usr/local/bin/

###############################
### docker-bits/6_remote-desktop.Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion output/rstudio/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ RUN \
&& echo "${QUARTO_SHA} quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" | sha256sum -c - \
&& tar -xf quarto-${QUARTO_VERSION}-linux-amd64.tar.gz \
&& chmod +x quarto-${QUARTO_VERSION} \
&& sudo mv ./quarto-${QUARTO_VERSION} /usr/local/bin/quarto
&& sudo mv ./quarto-${QUARTO_VERSION}/bin/quarto /usr/local/bin/

###############################
### docker-bits/5_DB-Drivers.Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion output/sas/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ RUN \
&& echo "${QUARTO_SHA} quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" | sha256sum -c - \
&& tar -xf quarto-${QUARTO_VERSION}-linux-amd64.tar.gz \
&& chmod +x quarto-${QUARTO_VERSION} \
&& sudo mv ./quarto-${QUARTO_VERSION} /usr/local/bin/quarto
&& sudo mv ./quarto-${QUARTO_VERSION}/bin/quarto /usr/local/bin/

###############################
### docker-bits/5_DB-Drivers.Dockerfile
Expand Down

0 comments on commit cddc86c

Please sign in to comment.