Skip to content

Commit 940460d

Browse files
committed
Fixed potential errors in github action building
1 parent 8c35235 commit 940460d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ RUN conda config --quiet --add channels conda-forge \
2828
# && python3 -m pip install -r "${HOME}/pip_install.txt" \
2929
#&& mamba env update --name base --file "${ENVIRONMENT_FILE}" \
3030
&& mamba clean --quiet --all --force-pkgs-dirs --yes \
31-
&& R -e 'devtools::install_github("babessell1/zFPKM", quiet=TRUE)' \
31+
&& R -e "devtools::install_github('babessell1/zFPKM')" \
3232
# Install jupyter extensions
33-
&& jupyter labextension -y install @jupyter-widgets/jupyterlab-manager \
34-
&& jupyter labextension -y install escher \
33+
&& jupyter labextension install @jupyter-widgets/jupyterlab-manager \
34+
&& jupyter labextension install escher \
3535
&& jupyter trust "${JUPYTER_NOTEBOOK}" \
3636
&& rm -f "${ENVIRONMENT_FILE}" "${HOME}/pip_install.txt" "${HOME}/mamba_install.txt"
3737

0 commit comments

Comments
 (0)