summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 72a74f492467a14802de227eed048c05b681f02b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 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", "-m", "yaksh.code_server"]