From e1d81e0d601f111f19fa5fc92d72c46b56b9ee35 Mon Sep 17 00:00:00 2001 From: Daniel Park Date: Tue, 12 Dec 2023 10:15:12 -0500 Subject: [PATCH] fix typo --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ffd27ad..3264050 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN R -e "devtools::install_github('RfastOfficial/Rfast', dependencies=TRUE); li # Install reconstructR R package COPY . /opt/reconstructR -RUN R -e "devtools::install_local("/opt/reconstructR", dependencies=TRUE, upgrade='never'); library(reconstructR)" +RUN R -e "devtools::install_local('/opt/reconstructR', dependencies=TRUE, upgrade='never'); library(reconstructR)" # Bash prompt CMD ["/bin/bash"]