Skip to content

Commit fd3ff08

Browse files
authored
feat: Add jq and shellcheck to the docker image (#195)
1 parent 97ae8c1 commit fd3ff08

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ defaults: &defaults
88
aliases:
99
- &build-docker
1010
name: Build Docker Image
11+
no_output_timeout: 20m
1112
command: |
1213
docker build -t react-native-community/react-native .
1314
docker run --rm --name rn-env react-native-community/react-native bin/sh -c "npx envinfo"

Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ RUN apt update -qq && apt install -qq -y --no-install-recommends \
8787
libgl1 \
8888
pulseaudio \
8989
socat \
90+
# Dev dependencies required by linters
91+
jq \
92+
shellcheck \
9093
&& gem install bundler \
9194
&& rm -rf /var/lib/apt/lists/*;
9295

0 commit comments

Comments
 (0)