Sha256: 68437568234c3e7f8e7bafa8a92f7de9324ad759cf55a6ca11702194a4509df8
Contents?: true
Size: 671 Bytes
Versions: 2
Compression:
Stored size: 671 Bytes
Contents
FROM ruby:3.2.0-alpine3.17 ENV WORKSPACE /rsyntaxtree WORKDIR $WORKSPACE RUN apk update && \ apk upgrade && \ apk add --no-cache linux-headers libxml2-dev make gcc libc-dev bash && \ apk add --no-cache librsvg librsvg-dev imagemagick imagemagick-dev xz-dev libbz2 && \ apk add --no-cache gobject-introspection gobject-introspection-dev && \ apk add --no-cache -t .build-packages --no-cache build-base curl-dev wget gcompat ADD Gemfile $WORKSPACE ADD rsyntaxtree.gemspec $WORKSPACE RUN bundle install -j4 ADD fonts $WORKSPACE RUN mkdir -p /usr/share/fonts/yh COPY ./fonts/* /usr/share/fonts/yh/ RUN fc-cache -fv ADD . $WORKSPACE CMD ["/bin/bash"]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rsyntaxtree-1.3.0 | Dockerfile |
rsyntaxtree-1.2.12 | Dockerfile |