Skip to content

Commit

Permalink
RTO-35842 bump ruby 2.3 to 2.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnaeverestengineering committed Nov 14, 2024
1 parent 1e9a170 commit c792b24
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
FROM ruby:2.3-slim
FROM ruby:2.7.8-slim

RUN apt-get update -y && apt-get install -y git

RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
build-essential \
git \
libffi-dev \
gcc \
make

WORKDIR /app
ADD . .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ moodle.courses.show(course_id)
```

```
moodle.courses.show(course_ids) #Example: moodle.courses.show([1030, 679....])
moodle.courses.show(course_ids) # Example: moodle.courses.show(1234, 234, ...)
```

Delete a course
Expand Down

0 comments on commit c792b24

Please sign in to comment.