Skip to content
Snippets Groups Projects
Unverified Commit 76ee441f authored by Laurent Modolo's avatar Laurent Modolo
Browse files

cutadapt:1.14: Dockerfile ubuntu -> alpine

parent 03f44eef
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:18.04 FROM alpine:3.8
MAINTAINER Laurent Modolo MAINTAINER Laurent Modolo
ENV CUTADAPT_VERSION=1.14 ENV CUTADAPT_VERSION=1.14
ENV PACKAGES build-essential=12.4* \ ENV PACKAGES python3 \
python3-pip=9.0.1* \ python3-dev \
python3-setuptools=39.0.1* \ musl-dev \
python3-dev=3.6.5* \ gcc
python3-wheel=0.30.0*
RUN apt-get update && \ RUN apk update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \ apk add ${PACKAGES}
apt-get clean
RUN pip3 install cutadapt==${CUTADAPT_VERSION} RUN pip3 install cutadapt==${CUTADAPT_VERSION}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment