Wikki13 commited on
Commit
1759519
·
verified ·
1 Parent(s): 636172d

Update Dockerfile

Browse files

The pandoc-citeproc package is no longer needed, as its functionality is integrated into modern versions of Pandoc.

Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -4,10 +4,9 @@ FROM rocker/r-base:latest
4
  # Set working directory
5
  WORKDIR /code
6
 
7
- # Install system dependencies, including Pandoc and TinyTeX
8
  RUN apt-get update && apt-get install -y \
9
  pandoc \
10
- pandoc-citeproc \
11
  wget \
12
  && apt-get clean
13
 
@@ -29,4 +28,3 @@ COPY . .
29
 
30
  # Set the command to run the Shiny app
31
  CMD ["R", "--quiet", "-e", "shiny::runApp('.', host='0.0.0.0', port=7860)"]
32
-
 
4
  # Set working directory
5
  WORKDIR /code
6
 
7
+ # Install system dependencies, including Pandoc
8
  RUN apt-get update && apt-get install -y \
9
  pandoc \
 
10
  wget \
11
  && apt-get clean
12
 
 
28
 
29
  # Set the command to run the Shiny app
30
  CMD ["R", "--quiet", "-e", "shiny::runApp('.', host='0.0.0.0', port=7860)"]