aboutsummaryrefslogtreecommitdiffstats
path: root/dockerfiles/Dockerfile.codi.deps
diff options
context:
space:
mode:
Diffstat (limited to 'dockerfiles/Dockerfile.codi.deps')
-rw-r--r--dockerfiles/Dockerfile.codi.deps31
1 files changed, 0 insertions, 31 deletions
diff --git a/dockerfiles/Dockerfile.codi.deps b/dockerfiles/Dockerfile.codi.deps
deleted file mode 100644
index dc563d0..0000000
--- a/dockerfiles/Dockerfile.codi.deps
+++ /dev/null
@@ -1,31 +0,0 @@
-# This file describes the standard way to build the dependencies for a CROPS
-# dispatcher image
-#
-# Usage:
-#
-# # Build CODI dependencies image with the following command:
-#
-# docker build -t crops/codi:deps -f Dockerfile.codi.deps .
-#
-
-FROM debian:wheezy
-MAINTAINER Todor Minchev <todor.minchev@linux.intel.com>
-
-# Install dependencies
-RUN apt-get update -qq && apt-get install -y -qq \
- libsqlite3-dev \
- libjansson-dev \
- git \
- wget \
- daemontools \
- build-essential && \
- apt-get upgrade -y -qq
-
-#Install a version of curl with unix sockets support
-RUN wget -q -P /tmp http://curl.haxx.se/download/curl-7.45.0.tar.gz && \
- cd /tmp && \
- tar xf curl-7.45.0.tar.gz && \
- cd curl-7.45.0 && \
- ./configure --prefix=/usr --enable-unix-sockets && \
- make && \
- make install