devdocs/Dockerfile-alpine

20 lines
482 B
Text
Raw Normal View History

2019-01-20 22:16:08 +01:00
FROM ruby:2.6.0-alpine
2018-08-19 23:45:58 +02:00
ENV LANG=C.UTF-8
WORKDIR /devdocs
COPY . /devdocs
RUN apk --update add nodejs build-base libstdc++ gzip git zlib-dev && \
gem install bundler && \
bundle install --system --without test && \
thor docs:download --all && \
thor assets:compile && \
apk del gzip build-base git zlib-dev && \
rm -rf /var/cache/apk/* /tmp ~/.gem /root/.bundle/cache \
/usr/local/bundle/cache /usr/lib/node_modules
EXPOSE 9292
CMD rackup -o 0.0.0.0