summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base_sdc-cqlsh/Dockerfile1
-rw-r--r--base_sdc-elasticsearch/Dockerfile1
-rw-r--r--base_sdc-jetty/Dockerfile1
-rw-r--r--base_sdc-python/Dockerfile3
-rw-r--r--base_sdc-sanity/Dockerfile1
5 files changed, 2 insertions, 5 deletions
diff --git a/base_sdc-cqlsh/Dockerfile b/base_sdc-cqlsh/Dockerfile
index 9595764..7cc7566 100644
--- a/base_sdc-cqlsh/Dockerfile
+++ b/base_sdc-cqlsh/Dockerfile
@@ -1,7 +1,6 @@
FROM openjdk:8-jdk-alpine
RUN apk add --no-cache py-pip && \
- echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
pip install cqlsh==4.0.1 && \
set -ex && \
pip install cqlsh && \
diff --git a/base_sdc-elasticsearch/Dockerfile b/base_sdc-elasticsearch/Dockerfile
index 15c9746..e505991 100644
--- a/base_sdc-elasticsearch/Dockerfile
+++ b/base_sdc-elasticsearch/Dockerfile
@@ -5,6 +5,7 @@ RUN mkdir -p /var/chef/nodes
# Install Chef
RUN set -ex && \
apk add --no-cache \
+ linux-headers \
curl \
vim \
bash \
diff --git a/base_sdc-jetty/Dockerfile b/base_sdc-jetty/Dockerfile
index df05d8f..3c761bf 100644
--- a/base_sdc-jetty/Dockerfile
+++ b/base_sdc-jetty/Dockerfile
@@ -4,7 +4,6 @@ USER root
# Install Chef
RUN set -ex && \
- echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
apk update && \
apk add --no-cache \
jq \
diff --git a/base_sdc-python/Dockerfile b/base_sdc-python/Dockerfile
index f80ffe0..353446c 100644
--- a/base_sdc-python/Dockerfile
+++ b/base_sdc-python/Dockerfile
@@ -4,8 +4,7 @@ FROM python:2.7-alpine
ENV PYCURL_SSL_LIBRARY=openssl
# Install packages only needed for building
-RUN echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
- apk update && \
+RUN apk update && \
apk add binutils jq libpng && \
apk add --no-cache \
libcurl \
diff --git a/base_sdc-sanity/Dockerfile b/base_sdc-sanity/Dockerfile
index 77f0da9..635e2c6 100644
--- a/base_sdc-sanity/Dockerfile
+++ b/base_sdc-sanity/Dockerfile
@@ -2,7 +2,6 @@ FROM openjdk:8-jdk-alpine
# Install Chef
RUN set -ex && \
- echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
apk add --no-cache \
curl \
vim \