Add webpython + instructions

This commit is contained in:
Janusch Jacoby
2015-09-15 19:56:10 +02:00
parent e6eeebfd4b
commit f21310e5fe
5 changed files with 4368 additions and 0 deletions

11
webpython/Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM ubuntu:14.04
MAINTAINER "Martin v. Löwis"
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ADD webpython.py /usr/lib/python3.4/webpython.py
RUN rm /usr/lib/python3.4/turtle.py
ADD turtle.py /usr/lib/python3.4/turtle.py
ADD assess /usr/lib/python3.4/assess
RUN adduser --disabled-password --gecos Python python
USER python
WORKDIR /home/python