Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ RUN groupadd --gid $USER_GID $USERNAME \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME

# Install Code Climate test reporter so coverage tooling works in the devcontainer
RUN curl -Ls https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 \
-o /usr/local/bin/cc-test-reporter \
&& chmod +x /usr/local/bin/cc-test-reporter

# ********************************************************
# * Anything else you want to do like clean up goes here *
# ********************************************************
Expand Down