Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse filesThe pandoc-citeproc package is no longer needed, as its functionality is integrated into modern versions of Pandoc.
- 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
|
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)"]
|
|