Skip to content

Commit

Permalink
fixed cutadatp
Browse files Browse the repository at this point in the history
  • Loading branch information
avikdatta committed Dec 16, 2020
1 parent 8a250fe commit 8091afe
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions cutadapt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@
FROM ubuntu:16.04
FROM ubuntu:18.04
LABEL maintainer="imperialgenomicsfacility"
LABEL version="cutadapt_v3.1"
LABEL description="Docker image for Cutadapt tools"
USER root
WORKDIR /
RUN apt-get -y update && \
apt-get install --no-install-recommends -y \
apt-utils \
locales \
cmake \
g++ \
libxml2-dev \
ca-certificates \
zlib1g-dev \
libfftw3-dev \
build-essential \
python3 \
pip3 && \
python3-pip && \
locale-gen en_US.UTF-8 && \
dpkg-reconfigure locales && \
apt-get purge -y --auto-remove && \
apt-get clean && \
pip3 install cutadapt==3.1 && \
pip3 install --upgrade pip && \
pip install \
setuptools \
cutadapt==3.1 && \
rm -rf /var/lib/apt/lists/*
USER nobody
WORKDIR /tmp
Expand Down

0 comments on commit 8091afe

Please sign in to comment.