11 lines
428 B
Docker
11 lines
428 B
Docker
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
|