diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9160e93 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +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 + +# Copy the project folder from host into container +COPY ./yaksh /src/yaksh + +# Run Yaksh code server +CMD ["python", "/src/yaksh/code_server.py"] |