Sha256: 60f967e222b54d487be645ab7e4c2302fbb20da4aa90d7214b20465ac1e20b32
Contents?: true
Size: 710 Bytes
Versions: 25
Compression:
Stored size: 710 Bytes
Contents
<% if options.cache? -%> RUN <%= pkg_cache.map {|name, path| "--mount=type=cache,id=#{name},sharing=locked,target=#{path} \\"}.join("\n ") %> <%= repos %><%= pkg_update %> && \ <%= pkg_install %> <%= packages.join(" ") %> <% else -%> RUN <%= repos %><%= pkg_update %> && \ <%= pkg_install %> <%= packages.join(" ") %><% if clean %> && \ rm -rf <%= pkg_cleanup %><% end %> <% end -%> <% if @sqlserver -%> # install freetds required by tiny_tds gem RUN wget ftp://ftp.freetds.org/pub/freetds/stable/freetds-1.3.16.tar.gz && \ tar -xzf freetds-1.3.16.tar.gz && \ cd freetds-1.3.16 && \ ./configure --prefix=/usr/local --with-tdsver=7.3 && \ make && \ make install <% end -%>
Version data entries
25 entries across 25 versions & 1 rubygems