From a013dcfda0cd73d77faedc32d0f81eb557fdbbad Mon Sep 17 00:00:00 2001 From: adityacp Date: Mon, 2 Jan 2017 15:25:14 +0530 Subject: Update Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 9160e93..72a74f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,12 @@ FROM debian:8.2 MAINTAINER FOSSEE # 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"] -- cgit