Skip to content

Commit

Permalink
Merge pull request #280 from sanger-pathogens/cdhit_docker_fix_branch
Browse files Browse the repository at this point in the history
Added default locale to docker file
  • Loading branch information
kpepper authored Aug 30, 2019
2 parents d1f1591 + 601d4a8 commit 3c95c7d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ ARG SPADES_VERSION=3.13.1
ARG ARIBA_TAG=master
ARG ARIBA_BUILD_DIR=/ariba

ARG LOCALE_COUNTRY=en_GB

RUN apt-get -qq update && \
apt-get install --no-install-recommends -y \
build-essential \
Expand All @@ -28,6 +30,12 @@ RUN apt-get -qq update && \
wget \
zlib1g-dev

# Install locales
RUN apt-get update && apt-get install -y locales-all && rm -rf /var/lib/apt/lists/*
# Set a default locale.
ENV LANG=${LOCALE_COUNTRY}.UTF-8 \
LANGUAGE=${LOCALE_COUNTRY}:en

# Install bowtie
RUN wget -q http://downloads.sourceforge.net/project/bowtie-bio/bowtie2/${BOWTIE2_VERSION}/bowtie2-${BOWTIE2_VERSION}-linux-x86_64.zip \
&& unzip bowtie2-${BOWTIE2_VERSION}-linux-x86_64.zip \
Expand Down

0 comments on commit 3c95c7d

Please sign in to comment.