Skip to content

Commit

Permalink
Fix locale issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mboudet authored Jan 17, 2024
1 parent 07af7ed commit f508068
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions diann/1.8.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:latest

################## METADATA ######################
LABEL base_image="ubuntu:latest"
LABEL version="1"
LABEL version="2"
LABEL software="diann"
LABEL software.version="1.8.1"
LABEL about.summary="DIA-NN - a universal software for data-independent acquisition (DIA) proteomics data processing."
Expand All @@ -21,7 +21,10 @@ MAINTAINER Yasset Perez-Riverol <[email protected]>
ENV DEBIAN_FRONTEND noninteractive

## Update and install packages
RUN apt-get update -y && apt-get install -y g++ build-essential cmake zlib1g-dev libbz2-dev libboost-all-dev wget
RUN apt-get update -y && apt-get install -y g++ build-essential cmake zlib1g-dev libbz2-dev libboost-all-dev wget locales

RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen

## Temp directory
RUN mkdir /opt/software
Expand Down

0 comments on commit f508068

Please sign in to comment.