From c032cadb1e645bf60cfd9276ed2660cc602a0e25 Mon Sep 17 00:00:00 2001 From: Qiaowei Ren Date: Thu, 18 Jan 2018 12:39:37 +0800 Subject: build package This patch is to build debian/centos package. Currently it only can build ceph package and only support debian package building from ceph official repo. Change-Id: I702a1d28dd0101156bc3267d93510133db122613 Signed-off-by: Qiaowei Ren --- ci/build_deb/Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ci/build_deb/Dockerfile (limited to 'ci/build_deb') diff --git a/ci/build_deb/Dockerfile b/ci/build_deb/Dockerfile new file mode 100644 index 0000000..bcaeba3 --- /dev/null +++ b/ci/build_deb/Dockerfile @@ -0,0 +1,11 @@ +#!/bin/bash + +FROM ubuntu:16.04 +RUN apt-get update && apt-get install -y \ + sudo \ + git \ + cmake \ + debhelper \ + python-pip +RUN echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo +RUN chmod 0440 /etc/sudoers.d/open-sudo -- cgit 1.2.3-korg