Sha256: a1f99461cafca800341f22a2f6a103e6439a1a593cabf6fb3461c85773dd1566
Contents?: true
Size: 794 Bytes
Versions: 8
Compression:
Stored size: 794 Bytes
Contents
<% if options.cache? -%> RUN --mount=type=cache,id=dev-apt-cache,sharing=locked,target=/var/cache/apt \ --mount=type=cache,id=dev-apt-lib,sharing=locked,target=/var/lib/apt \ apt-get update -qq && \ apt-get install --no-install-recommends -y <%= packages.join(" ") %> <% else -%> RUN apt-get update -qq && \ apt-get install --no-install-recommends -y <%= packages.join(" ") %><% if clean %> && \ rm -rf /var/lib/apt/lists /var/cache/apt/archives<% 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
8 entries across 8 versions & 1 rubygems