Skip to content
Snippets Groups Projects
Dockerfile 215 B
FROM python:3.9-slim 

ENV KB_VERSION="0.26.3"

RUN apt update && apt install -y procps && pip3 install kb-python==${KB_VERSION} gffutils==0.10.1

COPY t2g.py /usr/bin/

RUN chmod +x /usr/bin/t2g.py

CMD [ "bash" ]