Skip to content

Commit

Permalink
Otter Grade Dockerfile Added wget
Browse files Browse the repository at this point in the history
- wget added to Dockerfile for backwards compatibility with autograder.zip files generated with otter-grader version 4
  • Loading branch information
sean-morris committed May 14, 2024
1 parent 7831488 commit 72a3448
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog

<<<<<<< HEAD
**v5.6.0(unreleased):**
=======
**v5.5.2:**

* added wget to grade/Dockerfile -- this allows otter-grader version 4 generated autograder.zips to work with
otter-grader version 5

**v5.5.1:**
>>>>>>> 06f0ddeb (Otter Grade Dockerfile Added wget)
* final_grades.csv: notebook name is the file name for each row instead of the full path to the notebook and the rows are sorted by notebook name

Expand Down
2 changes: 1 addition & 1 deletion otter/grade/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM ${BASE_IMAGE}
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
apt-get install -y curl unzip dos2unix && \
apt-get install -y curl unzip dos2unix wget && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/tmp/*

Expand Down

0 comments on commit 72a3448

Please sign in to comment.