Skip to content

Commit

Permalink
Fixes rubyforgood#4424 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 970a174
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
# See https://github.com/devcontainers/images/blob/main/src/ruby/history/
FROM mcr.microsoft.com/devcontainers/ruby:dev-3.2-buster
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 970a174

Please sign in to comment.