Sha256: 6461142dfae9513a10b4483c3d3a34480ecebff70643aea8e55835b0ee801a6b
Contents?: true
Size: 548 Bytes
Versions: 1
Compression:
Stored size: 548 Bytes
Contents
# docker build -t bpowers/mesh . FROM ubuntu:18.04 as builder MAINTAINER Bobby Powers <bobbypowers@gmail.com> RUN apt-get update && apt-get install -y \ build-essential \ git \ python3 \ sudo \ libxml2 \ && rm -rf /var/lib/apt/lists/* \ && update-alternatives --install /usr/bin/python python /usr/bin/python3 10 \ && rm -rf /usr/local/lib/python3.6 WORKDIR /src COPY . . ENV PREFIX /usr/local RUN make test RUN support/install_all_configs FROM ubuntu:18.04 COPY --from=builder /usr/lib/libmesh* /usr/local/lib/ RUN ldconfig
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mesh-rb-0.0.1 | ext/mesh/mesh/Dockerfile |