Skip to content
Snippets Groups Projects
Verified Commit a83195d8 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

Docker: add alntools:dd96682

parent 3888c6a4
No related branches found
No related tags found
No related merge requests found
FROM python:3.9-buster as build
MAINTAINER Laurent Modolo
ENV ALNTOOLS_VERSION=dd96682
ENV PACKAGES git \
ca-certificates \
procps
RUN apt-get update \
&& apt-get install -y --no-install-recommends ${PACKAGES}\
&& apt-get clean \
&& git clone https://github.com/churchill-lab/alntools.git \
&& cd alntools \
&& git checkout ${ALNTOOLS_VERSION} \
&& python setup.py install \
&& cd .. \
&& rm -R alntools \
&& apt-get autoremove --purge -y git ca-certificates
CMD ["bash"]
\ No newline at end of file
#!/bin/sh
docker pull lbmc/alntools:dd96682
docker build src/.docker_modules/alntools/dd96682 -t 'lbmc/alntools:dd96682'
docker push lbmc/alntools:dd96682
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