commit 3682c759f97ebf6074ee5ce6c808dd0ad1144a7a
parent 1d604643b53f2e9d3ee8c3f07ad87e2b40f25eed
Author: Joris Vink <joris@coders.se>
Date: Thu, 11 Jun 2015 18:46:44 +0200
Kill docker files.
After some pondering they do not belong in this repo. If anyone
wants to maintain these outside of this repo, go right ahead.
Diffstat:
3 files changed, 0 insertions(+), 33 deletions(-)
diff --git a/docker/Makefile b/docker/Makefile
@@ -1,14 +0,0 @@
-all: build app
-
-build:
- docker build -t kore-build -f build/Dockerfile build/
- docker tag kore-build kore/build
-
-app:
- docker build -t kore-app -f app/Dockerfile app/
- docker tag kore-app kore/app
-
-clean:
- docker rmi -f kore-build kore-app
-
-.PHONY: all build app clean
diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile
@@ -1,14 +0,0 @@
-FROM kore/build
-MAINTAINER Thordur I. Bjornsson <thorduri@secnorth.net>
-
-ENV KORE_VERSION 1.2.3
-
-WORKDIR /kore
-
-ADD https://github.com/jorisvink/kore/archive/$KORE_VERSION-release.tar.gz /kore/
-RUN tar -zxf $KORE_VERSION-release.tar.gz && cd kore-$KORE_VERSION-release/ && \
- make clean && make && make install && \
- rm -rf /kore/$KORE_VERSION-release.tar.gz /kore/kore-$KORE_VERSION-release
-
-EXPOSE 443 8888
-ENTRYPOINT ["kore", "run"]
diff --git a/docker/build/Dockerfile b/docker/build/Dockerfile
@@ -1,5 +0,0 @@
-FROM debian:jessie
-MAINTAINER Thordur I. Bjornsson <thorduri@secnorth.net>
-
-RUN apt-get update -qq && \
- apt-get -qqy install build-essential clang git libpq-dev libssl-dev libz-dev