Skip to content

Commit

Permalink
#6358 Fix docker language warnings. (#6434)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalgce authored and scottdraves committed Dec 1, 2017
1 parent ac90f17 commit 67ade3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions docker/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,11 @@ RUN useradd beakerx --create-home
ENV CONDA_DIR /opt/conda
ENV PATH /opt/conda/bin:$PATH
ENV NB_USER beakerx
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update && apt-get dist-upgrade -y && \
apt-get install -y sudo curl unzip software-properties-common apt-transport-https git bzip2 wget locales && \
locale-gen en_US.UTF-8 && \
RUN apt-get update && \
apt-get install -y --no-install-recommends apt-utils sudo curl unzip software-properties-common apt-transport-https git bzip2 wget && \
apt-get dist-upgrade -y && \
echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \
wget --quiet https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh && \
/bin/bash ~/miniconda.sh -b -p /opt/conda && \
Expand Down
2 changes: 1 addition & 1 deletion docker/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

conda create -y -n beakerx 'python>=3' nodejs pandas openjdk maven
conda create -y -n beakerx 'python>=3' pandas openjdk maven
source activate beakerx
conda install -y -c conda-forge ipywidgets

Expand Down

0 comments on commit 67ade3d

Please sign in to comment.