Skip to content

Commit

Permalink
Dockerfiles for ppc64le/Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
seth-priya committed Jun 23, 2017
1 parent b04d781 commit dd33724
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 0 deletions.
12 changes: 12 additions & 0 deletions c-ares/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -0,0 +1,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 && \
apt-get purge -y git build-essential libtool libtool-bin automake && apt-get autoremove -y

WORKDIR /c-ares

CMD ["/bin/bash"]
5 changes: 5 additions & 0 deletions c-ares/Dockerfiles/latest_ubuntu_16.04/README.md
@@ -0,0 +1,5 @@
Docker build command:
docker build -t c-ares .

Docker run command:
docker run -it c-ares
14 changes: 14 additions & 0 deletions inf/Dockerfile/latest_ubuntu_16.04/Dockerfile
@@ -0,0 +1,14 @@
FROM ppc64le/golang:1.8

RUN apt-get update && \
apt-get install -y cpp libc6-dev autoconf automake bison flex libtool \
ecj make texinfo libgmp10 libmpfr4 libmpfr-dev libmpc3 libmpc-dev zip \
unzip antlr subversion zlib1g zlib1g-dev build-essential git && \
git clone https://github.com/go-inf/inf.git && \
cd inf && mkdir go && go get gopkg.in/inf.v0 && go test -v ./... && \
apt-get purge -y cpp autoconf automake bison flex libtool ecj make texinfo libmpfr-dev \
libmpc-dev zip unzip antlr subversion zlib1g-dev build-essential git && \
apt-get autoremove -y

WORKDIR /inf
ENTRYPOINT ["/bin/bash"]
5 changes: 5 additions & 0 deletions inf/Dockerfile/latest_ubuntu_16.04/README.md
@@ -0,0 +1,5 @@
Docker build command:
docker build -t inf .

Docker run command:
docker run -it inf
12 changes: 12 additions & 0 deletions jemalloc/Dockerfiles/latest_ubuntu_16.04/Dockerfile
@@ -0,0 +1,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/jemalloc/jemalloc && \
cd jemalloc && ./autogen.sh && ./configure && \
make install_bin install_include install_lib && \
apt-get purge -y git build-essential libtool libtool-bin automake && apt-get autoremove -y

WORKDIR /jemalloc

CMD ["/bin/bash"]
5 changes: 5 additions & 0 deletions jemalloc/Dockerfiles/latest_ubuntu_16.04/README.md
@@ -0,0 +1,5 @@
Docker build command:
docker build -t jemalloc

Docker run command:
docker run -it jemalloc

0 comments on commit dd33724

Please sign in to comment.