summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authoradityacp2017-01-02 15:25:14 +0530
committeradityacp2017-01-02 15:25:14 +0530
commita013dcfda0cd73d77faedc32d0f81eb557fdbbad (patch)
tree620aebdc8554c34a5085d9be1c6b628092620b31 /Dockerfile
parentbe19962c1f7440e415c5b8d6e396a0ef4d3d2518 (diff)
downloadonline_test-a013dcfda0cd73d77faedc32d0f81eb557fdbbad.tar.gz
online_test-a013dcfda0cd73d77faedc32d0f81eb557fdbbad.tar.bz2
online_test-a013dcfda0cd73d77faedc32d0f81eb557fdbbad.zip
Update Dockerfile
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"]