2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-21 23:01:52 +00:00
troggle/_deploy/docker/Dockerfile-django-1.4.22-wheezy
2021-05-03 22:47:57 +01:00

18 lines
384 B
Plaintext

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"]