-
-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #4425 so tests work after Docker setup
- Loading branch information
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Installs Ruby 3.2.2. When human-essentials moves to a newer version of ruby, | ||
# it will be more efficient to change the image. | ||
# See https://github.com/devcontainers/images/blob/main/src/ruby/history/ | ||
FROM mcr.microsoft.com/devcontainers/ruby:dev-3.2-buster | ||
FROM mcr.microsoft.com/devcontainers/ruby:dev-3.2 | ||
RUN apt -y update && apt install -y vim curl gpg postgresql postgresql-contrib | ||
RUN cd /tmp | ||
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | ||
RUN apt install -y ./google-chrome-stable_current_amd64.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters