Skip to content

Commit

Permalink
Merge pull request #13 from dodona-edu/fix/r-lint-fixes
Browse files Browse the repository at this point in the history
Fix lint errors in the R dockerfile
  • Loading branch information
chvp authored Aug 3, 2019
2 parents 2ad0711 + f0bd5ce commit 7c20c1d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dodona-r.dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM r-base
FROM r-base:3.6.1

# Make sure the students can't find our secret path, which is mounted in
# /mnt with a secure random name.
RUN apt-get update && \
apt-get install -y --no-install-recommends procps && \
apt-get install -y --no-install-recommends procps=3.3.15 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
chmod 711 /mnt && \
groupmod -n runner docker && \
usermod -l runner -d /home/runner docker && \
Expand All @@ -15,3 +17,4 @@ RUN apt-get update && \

WORKDIR /home/runner/workdir
COPY main.sh /main.sh

0 comments on commit 7c20c1d

Please sign in to comment.