Generate + set locales in the base s2i images

pull/20/head
yuvipanda 2017-05-28 22:50:04 -07:00 zatwierdzone przez Yuvi Panda
rodzic 6206a4494f
commit 496abd9e91
5 zmienionych plików z 29 dodań i 5 usunięć

Wyświetl plik

@ -10,9 +10,17 @@ RUN apt-get update && \
tar \
ca-certificates \
bzip2 \
git && \
git \
locales && \
apt-get purge && apt-get clean
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
locale-gen
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV CONDA_DIR=/opt/conda \
PATH=/opt/conda/bin:$PATH \
NB_USER=jovyan \

Wyświetl plik

@ -1 +1 @@
v0.1.5
v0.2.0

Wyświetl plik

@ -12,9 +12,17 @@ RUN apt-get update && \
python3 \
python3-venv \
tar \
git && \
git \
locales && \
apt-get purge && apt-get clean
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
locale-gen
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
RUN adduser --disabled-password --gecos "Default Jupyter user" jovyan
RUN mkdir -p ${APP_DIR} && chown -R jovyan:jovyan ${APP_DIR}

Wyświetl plik

@ -14,9 +14,17 @@ RUN apt-get update && \
build-essential \
virtualenv \
tar \
git && \
git \
locales && \
apt-get purge && apt-get clean
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
locale-gen
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
RUN adduser --disabled-password --gecos "Default Jupyter user" jovyan
RUN mkdir -p ${APP_DIR} && chown -R jovyan:jovyan ${APP_DIR}

Wyświetl plik

@ -1 +1 @@
v0.1.2
v0.2.0