Skip to content

Commit

Permalink
Update dockerfiles to point to a current base image
Browse files Browse the repository at this point in the history
  • Loading branch information
seth-priya committed Aug 23, 2018
1 parent 507daf8 commit a229626
Show file tree
Hide file tree
Showing 30 changed files with 62 additions and 58 deletions.
4 changes: 2 additions & 2 deletions accepts/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,7 +1,7 @@
FROM ppc64le/node:4.7
FROM node:10.9.0-stretch

# Owner information
MAINTAINER "Archa Bhandare <archa_bhandare@persistent.co.in>"
MAINTAINER "Priya Seth <sethp@us.ibm.com>"

#Install dependencies needed for building and testing
RUN apt-get update && apt-get install -y build-essential && \
Expand Down
4 changes: 3 additions & 1 deletion axon/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,4 +1,6 @@
FROM ppc64le/node:4.7
FROM node:6-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>"

RUN apt-get update -y && \
apt-get install -y git build-essential && \
Expand Down
8 changes: 6 additions & 2 deletions c-ares/Dockerfiles/latest_ubuntu_16.04/Dockerfile
Expand Up @@ -3,8 +3,12 @@ FROM ppc64le/ubuntu:16.04
RUN apt-get update -y && \
apt-get install -y git libtool libtool-bin automake build-essential && \
git clone https://github.com/bagder/c-ares.git && \
cd c-ares && ./buildconf && ./configure && make && \
cd test && make && ./arestest && \
cd c-ares && ./buildconf && ./configure && make && make install && \
./adig www.google.com && ./acountry www.google.com && ./ahost www.google.com \
cd test && make && \
./arestest -4 -v --gtest_filter="-*Container*" && \
./fuzzcheck.sh && \
./dnsdump fuzzinput/answer_a fuzzinput/answer_aaaa && \
apt-get purge -y git build-essential libtool libtool-bin automake && apt-get autoremove -y

WORKDIR /c-ares
Expand Down
2 changes: 1 addition & 1 deletion clyent/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/python:2.7
FROM python:2.7.15-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>"

Expand Down
4 changes: 2 additions & 2 deletions connect/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,7 +1,7 @@
FROM ppc64le/node:4.7
FROM node:10.9.0-stretch

# Owner information
MAINTAINER "Archa Bhandare <archa_bhandare@persistent.co.in>"
MAINTAINER "Priya Seth <sethp@us.ibm.com>"

#Install dependencies needed for building and testing
RUN apt-get update && apt-get install -y build-essential && \
Expand Down
@@ -1,4 +1,4 @@
FROM ppc64le/ubuntu:16.04
FROM ubuntu:18.04

# Owner of a docker file
# email : Meghali Dhoble <dhoblem@us.ibm.com>
Expand Down
2 changes: 1 addition & 1 deletion express/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/node:4.7
FROM node:10.9.0-stretch

# Owner information
MAINTAINER "Priya Seth <sethp@us.ibm.com>"
Expand Down
2 changes: 1 addition & 1 deletion google-ngrams/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/ubuntu:16.04
FROM ubuntu:18.04

MAINTAINER "Atul Sowani <sowania@us.ibm.com>"

Expand Down
2 changes: 1 addition & 1 deletion inf/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/golang:1.8
FROM golang:1.10-stretch

RUN apt-get update && \
apt-get install -y cpp libc6-dev autoconf automake bison flex libtool \
Expand Down
9 changes: 4 additions & 5 deletions leaflet/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,12 +1,11 @@
FROM node:10.9.0-stretch
FROM ubuntu:18.04

MAINTAINER "Priya Seth <sethp@us.ibm.com>
ENV QT_QPA_PLATFORM offscreen
RUN apt-get update \
&& apt-get install -y libfontconfig \
&& wget https://github.com/ibmsoe/phantomjs/releases/download/2.1.1/phantomjs-2.1.1-linux-ppc64.tar.bz2 \
&& tar -xvf phantomjs-2.1.1-linux-ppc64.tar.bz2 \
&& cp phantomjs-2.1.1-linux-ppc64/bin/phantomjs /usr/bin/ \
&& apt-get install -y git libfontconfig phantomjs nodejs npm \
&& cd / && git clone https://github.com/Leaflet/Leaflet && cd Leaflet \
&& npm install \
&& npm test \
Expand Down
@@ -1,12 +1,11 @@
FROM node:10.9.0-stretch
FROM ubuntu:18.04

MAINTAINER "Priya Seth <sethp@us.ibm.com>
ENV QT_QPA_PLATFORM offscreen
RUN apt-get update \
&& apt-get install -y libfontconfig \
&& wget https://github.com/ibmsoe/phantomjs/releases/download/2.1.1/phantomjs-2.1.1-linux-ppc64.tar.bz2 \
&& tar -xvf phantomjs-2.1.1-linux-ppc64.tar.bz2 \
&& cp phantomjs-2.1.1-linux-ppc64/bin/phantomjs /usr/bin/ \
&& apt-get install -y libfontconfig git phantomjs nodejs npm \
&& cd / && git clone https://github.com/less/less.js && cd less.js \
&& npm install \
&& npm install -g grunt grunt-cli \
Expand Down
6 changes: 4 additions & 2 deletions libsodium/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -1,9 +1,11 @@
FROM ppc64le/ubuntu:16.04
FROM ubuntu:18.04

MAINTAINER "Priya Seth <sethp@us.ibm.com>"

RUN apt-get update -y && \
apt-get install -y git libtool pkg-config autoconf automake build-essential gettext && \
git clone https://github.com/jedisct1/libsodium.git && \
cd libsodium && ./autogen.sh && ./configure && make && \
make check && sudo make install
make check && make install

CMD ["/bin/bash"]
@@ -1,4 +1,4 @@
FROM node:10.9.0-stretch
FROM node:8-stretch

# Owner information
MAINTAINER "Priya Seth <sethp@us.ibm.com>"
Expand Down
8 changes: 4 additions & 4 deletions makojs/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,9 +1,9 @@
FROM node:10.9.0-stretch
FROM node:8-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>"

RUN git clone https://github.com/makojs/core \
&& cd core && npm install && npm test
RUN git clone https://github.com/makojs/mako \
&& cd mako && npm install && npm test

WORKDIR /core
WORKDIR /mako
CMD ["/bin/bash"]
16 changes: 0 additions & 16 deletions moment/Dockerfiles/latest_debian_jessie/Dockerfile

This file was deleted.

13 changes: 13 additions & 0 deletions moment/Dockerfiles/latest_ubuntu_18.04/Dockerfile
@@ -0,0 +1,13 @@
FROM ubuntu:18.04

MAINTAINER "Priya Seth <sethp@us.ibm.com>
ENV QT_QPA_PLATFORM offscreen
RUN apt-get update \
&& apt-get install -y git libfontconfig phantomjs nodejs npm \
&& cd / && git clone https://github.com/moment/moment.git && cd moment \
&& npm install \
&& npm test \
&& apt-get purge -y libfontconfig && apt-get autoremove -y
WORKDIR /moment
CMD ["/bin/bash"]
@@ -1,6 +1,6 @@
FROM ppc64le/node:7.5.0
FROM node:10.9.0-stretch

MAINTAINER Yugandha Deshpande <yugandha@us.ibm.com>
MAINTAINER "Priya Seth <sethp@us.ibm.com>"

RUN apt-get update \
&& apt-get install -y git build-essential ruby ruby-dev \
Expand Down
2 changes: 1 addition & 1 deletion node-http-proxy/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/node:7.5.0
FROM node:6-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>
Expand Down
2 changes: 1 addition & 1 deletion parse5/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/node:7.5
FROM node:6-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>"

Expand Down
2 changes: 1 addition & 1 deletion pdfkit/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/node:7.5.0
FROM node:10.9.0-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>
Expand Down
2 changes: 1 addition & 1 deletion sax_js/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/node:7.5
FROM node:10.9.0-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>"

Expand Down
2 changes: 1 addition & 1 deletion script_js/Dockerfiles/latest_debian_jessie/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/node:7.5
FROM node:10.9.0-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>"

Expand Down
2 changes: 1 addition & 1 deletion strftime_js/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -1,4 +1,4 @@
FROM ppc64le/node:7.5.0
FROM node:10.9.0-stretch

MAINTAINER "Priya Seth <sethp@us.ibm.com>
Expand Down
@@ -1,4 +1,4 @@
FROM node:10.9.0-stretch
FROM node:6-stretch

# Owner information
MAINTAINER "Priya Seth <sethp@us.ibm.com>"
Expand Down
@@ -1,4 +1,4 @@
FROM ppc64le/node:4.7
FROM node:6-stretch

# Owner information
MAINTAINER "Priya Seth <sethp@us.ibm.com>"
Expand Down
@@ -1,4 +1,4 @@
FROM ppc64le/node:7.0
FROM node:6-stretch

# Owner information
MAINTAINER "Priya Seth <sethp@us.ibm.com>"
Expand Down
5 changes: 3 additions & 2 deletions xregexp/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -1,6 +1,7 @@
FROM ppc64le/node:7.5.0
FROM node:10.9.0-stretch

MAINTAINER Yugandha Deshpande <yugandha@us.ibm.com>
# Owner information
MAINTAINER "Priya Seth <sethp@us.ibm.com>"

RUN apt-get update \
&& apt-get install -y git build-essential \
Expand Down

0 comments on commit a229626

Please sign in to comment.