Skip to content

Commit

Permalink
Fix lint errors in c-sharp dockerfile #14
Browse files Browse the repository at this point in the history
  • Loading branch information
dmouriss committed Aug 9, 2019
1 parent 6b675a9 commit fd23301
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dodona-csharp.dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM mono
FROM mono:6.0.0

# Install jq for json querying in bash
RUN ["apt-get", "update"]
RUN ["apt-get", "-y", "install", "jshon"]
RUN ["apt-get", "-y", "install", "time"]
RUN ["apt-get", "clean"]
RUN ["rm", "-rf", "/var/lib/apt/lists/*"]

# Make sure the students can't find our secret path, which is mounted in
# /mnt with a secure random name.
Expand All @@ -16,6 +17,5 @@ RUN ["useradd", "-m", "runner"]
USER runner
RUN ["mkdir", "/home/runner/workdir"]

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

0 comments on commit fd23301

Please sign in to comment.