Skip to content

Commit

Permalink
fix Dockerfile CMD line
Browse files Browse the repository at this point in the history
  • Loading branch information
spfeiffe committed May 21, 2024
1 parent 52a133d commit 4262f9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ WORKDIR /app

# changed this part to not use renv (I'm experimenting)
RUN Rscript -e 'install.packages("remotes")'
RUN Rscript -e 'install_all_packages_in_lockfile.R'
RUN Rscript 'install_all_packages_in_lockfile.R'

# This part copies in the rest of the project
COPY . /app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.bak
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM rocker/shiny:4.4.0

# I added this label, though it doesn't do anything
LABEL name=CBCS
LABEL name=ContDataSumViz

# This part is the part that installs the system packages, usually needed for use in compiling some R package.
# I just added packages to this list as I got errors
Expand Down

0 comments on commit 4262f9a

Please sign in to comment.