12 lines
428 B
Text
12 lines
428 B
Text
|
FROM alpinelab/ruby-dev
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install --assume-yes --no-install-recommends --no-install-suggests \
|
||
|
pry \
|
||
|
&& apt-get install --assume-yes --no-install-recommends --no-install-suggests\
|
||
|
jq \
|
||
|
&& rm -rf /var/lib/apt/lists/* \
|
||
|
&& wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq &&\
|
||
|
chmod +x /usr/bin/yq \
|
||
|
&& curl -sSL https://bit.ly/install-xq | bash
|