diff options
Diffstat (limited to 'docker/Dockerfile-django-1.4.22-wheezy')
-rw-r--r-- | docker/Dockerfile-django-1.4.22-wheezy | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docker/Dockerfile-django-1.4.22-wheezy b/docker/Dockerfile-django-1.4.22-wheezy new file mode 100644 index 0000000..f6d5554 --- /dev/null +++ b/docker/Dockerfile-django-1.4.22-wheezy @@ -0,0 +1,18 @@ +FROM python:2.7-wheezy + +RUN apt-get -y update && apt-get install -y mercurial fonts-freefont-ttf survex locales + +# Set the locale +RUN locale-gen en_GB.UTF-8 +ENV LANG en_GB.UTF-8 +ENV LANGUAGE en_GB:en +ENV LC_ALL en_GB.UTF-8 + +WORKDIR /opt/expo/troggle +COPY requirements.txt . + +RUN pip install -r requirements.txt + +EXPOSE 8000 + +#CMD ["python","manage.py","runserver","0.0.0.0:8000"]
\ No newline at end of file |