ceph-csi/scripts/Dockerfile.devel
Niels de Vos 7381253ee0 build: add an option to compile in a container
This makes it possible to build on any platform that supports Linux
containers. The container image used for building is created once, or on
updating the `scripts/Dockerfile.build` and is cached afterwards.

To build the executable in a container, use `make containerized-build`
and everything will be done automatically. The executable will also be
available on the usual location.

Signed-off-by: Niels de Vos <ndevos@redhat.com>
2020-03-26 08:45:53 +00:00

12 lines
144 B
Docker

FROM ceph/ceph:v14
ENV GOPATH=/go
RUN yum -y install \
golang \
make \
librados-devel \
librbd-devel \
&& yum -y update \
&& true