blob: c3d72fbcf7b9ab4c94e35e956f6ff5050e6ac0f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|