summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 9160e93..72a74f4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,10 +2,12 @@ FROM debian:8.2
MAINTAINER FOSSEE <pythonsupport@fossee.in>
# Update Packages and Install Python & net-tools
-RUN apt-get update && apt-get install -y python net-tools
+RUN apt-get update && apt-get install -y python net-tools python-pip && pip install tornado
# Copy the project folder from host into container
COPY ./yaksh /src/yaksh
+WORKDIR /src
+
# Run Yaksh code server
-CMD ["python", "/src/yaksh/code_server.py"]
+CMD ["python", "-m", "yaksh.code_server"]