Mercurial > repos > triasteran > trips_create_new_organism
view final/Dockerfile @ 4:9482a43a3d83 draft
Uploaded
author | triasteran |
---|---|
date | Tue, 01 Mar 2022 12:40:17 +0000 |
parents | |
children |
line wrap: on
line source
FROM alpine WORKDIR /tmp COPY create_annotation_sqlite.py . RUN chmod +x create_annotation_sqlite.py RUN ln create_annotation_sqlite.py /usr/local/bin/create_annotation_sqlite RUN export PATH="$PATH:/usr/local/bin" ENV PATH="/usr/local/bin:${PATH}" RUN apk add bash RUN apk add python3 RUN apk add py3-pip RUN pip install --upgrade pip RUN pip install --no-cache-dir 'pysqlite3==0.4.6' RUN pip install --no-cache-dir 'regex==2022.1.18' RUN pip install --no-cache-dir 'intervaltree==3.1.0'