Skip to content

Commit

Permalink
update Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
ThierryO committed Jan 12, 2024
1 parent 846ce8c commit c52b560
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Expand Up @@ -14,9 +14,9 @@ jobs:
name: "test Rmd"
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: build examples
uses: inbo/actions/render_inbomd@inbomd-0.6.2
uses: inbo/actions/render_inbomd@inbomd-0.6.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EXAMPLE_BRANCH: main
Expand Down
11 changes: 5 additions & 6 deletions Dockerfile
Expand Up @@ -57,12 +57,6 @@ RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git

## Install pandoc
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
pandoc \
pandoc-citeproc

## Install gpg
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand All @@ -82,6 +76,11 @@ RUN apt-get update \
&& apt-get install -y --no-install-recommends \
r-base-dev

## Install pandoc
RUN wget https://github.com/jgm/pandoc/releases/download/3.1.8/pandoc-3.1.8-1-amd64.deb \
&& dpkg -i pandoc-3.1.8-1-amd64.deb \
&& rm pandoc-3.1.8-1-amd64.deb

COPY docker/.Rprofile /usr/lib/R/etc/Rprofile.site

## R packages
Expand Down

0 comments on commit c52b560

Please sign in to comment.