Sha256: 633ebb5cdffdf6ca9463bfa0fb8057fd92e93ecdec16a54287ed7ac95b972639
Contents?: true
Size: 434 Bytes
Versions: 119
Compression:
Stored size: 434 Bytes
Contents
FROM ubuntu:xenial LABEL maintainer="marnen@marnen.org" RUN apt-get update && apt-get install -y g++ build-essential ARG apl_dir ARG base_dir=/gnu-apl WORKDIR ${base_dir} ADD . ${base_dir} WORKDIR ${apl_dir} RUN ./configure --prefix=/usr --sysconfdir=/etc RUN make RUN make install WORKDIR ${base_dir} RUN rm -r ${apl_dir} # 1.6 and before COPY .travis/.gnu-apl /etc/gnu-apl/ # 1.7 and later COPY .travis/.gnu-apl /etc/gnu-apl.d/
Version data entries
119 entries across 119 versions & 1 rubygems