Skip to content

Commit eb6aac9

Browse files
committed
edit dockerfile to include curl
1 parent f575d58 commit eb6aac9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
77
libjpeg-dev libtiff-dev libfreetype6-dev libharfbuzz-dev \
88
libfribidi-dev libicu-dev libglpk-dev zlib1g-dev \
99
gfortran pandoc pkg-config \
10-
cmake libnlopt-dev \
10+
cmake libnlopt-dev curl ca-certificates \
1111
&& rm -rf /var/lib/apt/lists/*
1212

1313
# 3. Setup Environment
@@ -28,7 +28,7 @@ RUN R -e "options(repos = c(CRAN = 'https://packagemanager.posit.co/cran/__linux
2828

2929
RUN mkdir -p /opt/renv/library
3030
# Now renv::restore will work with the binary override
31-
RUN R -e "renv::restore(library='/opt/renv/library')"
31+
RUN R -e "renv::restore(library='/opt/renv/library', type='binary')"
3232

3333
# 5. Copy ALL Application Files
3434
COPY . .

0 commit comments

Comments
 (0)