Skip to content

Commit

Permalink
Fixes #4425 so tests work after Docker setup
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyli97 committed Jun 4, 2024
1 parent 1f85193 commit f5b3bf0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .devcontainer/Dockerfile
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
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,10 @@
}
},

// DOCKER env variable passed to Cuprite to enable --no-sandbox so Chrome can run in Docker
"remoteEnv": {
"DOCKER": "true"
},

"postCreateCommand": ".devcontainer/post-create.sh"
}

0 comments on commit f5b3bf0

Please sign in to comment.