kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 6efd3ffae2df665bc0ea2dd355586c9093a07ba0
parent fa109725eed97d1e03bef6abad96465372bd18e0
Author: Joris Vink <joris@coders.se>
Date:   Thu, 21 May 2015 14:46:50 +0200

Merge pull request #63 from thorduri/docker-toplevel-gc

top level dockerfile not generally useful.
Diffstat:
.dockerignore | 1-
Dockerfile | 5-----
Makefile | 4----
3 files changed, 0 insertions(+), 10 deletions(-)

diff --git a/.dockerignore b/.dockerignore @@ -1 +0,0 @@ -.git diff --git a/Dockerfile b/Dockerfile @@ -1,5 +0,0 @@ -FROM kore/build - -WORKDIR /kore -VOLUME ["/kore"] -EXPOSE 443 8888 diff --git a/Makefile b/Makefile @@ -77,8 +77,4 @@ clean: find . -type f -name \*.o -exec rm {} \; rm -f $(KORE) -contain: - docker build -t kore . - docker run -itP --name kore --rm -v ${PWD}/:/kore kore - .PHONY: clean contain