Makefile changes and added options

This commit is contained in:
2020-11-23 11:20:47 +01:00
parent 2551a9c6a8
commit 26bca0b083
16 changed files with 118 additions and 54 deletions

View File

@@ -6,7 +6,8 @@ vim \
python3 \
python3-pip \
sshfs \
curl
curl \
locales
RUN pip3 install --upgrade pip
@@ -21,6 +22,16 @@ RUN pip3 install \
flask_cors \
pymongo \
flask-pymongo \
gunicorn
gunicorn \
SQLAlchemy \
tqdm \
psycopg2-binary
# Set the locale
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV PYTHONIOENCODING UTF-8