mirror of
https://github.com/hugomods/docker.git
synced 2025-04-26 13:10:48 +03:00
15 lines
284 B
Text
15 lines
284 B
Text
# install extra tools.
|
|
RUN apk add --no-cache build-base \
|
|
make \
|
|
ruby-dev \
|
|
curl \
|
|
jq
|
|
|
|
# install html-proofer
|
|
RUN gem install html-proofer --bindir /usr/local/bin
|
|
|
|
# clean up
|
|
RUN apk --purge del build-base make ruby-dev
|
|
|
|
# require by Node.js
|
|
RUN apk add --no-cache libstdc++
|