Sha256: 8fcffcc727591f21b79568a9111e16029083543288a877b9a2e163547e439f3d

Contents?: true

Size: 702 Bytes

Versions: 5

Compression:

Stored size: 702 Bytes

Contents

FROM debian:stretch-backports

LABEL Description="Intuitive local web frontend for the BLAST bioinformatics tool"
LABEL MailingList="https://groups.google.com/forum/#!forum/sequenceserver"
LABEL Website="http://www.sequenceserver.com"
LABEL Version="1.1.0 beta"

RUN apt-get update  && apt-get install -y --no-install-recommends \
        build-essential \
        ruby ruby-dev \
        curl wget \
        gnupg \
        git \
        zlib1g-dev

VOLUME ["/db"]
EXPOSE 4567

COPY . /sequenceserver
WORKDIR /sequenceserver
RUN gem install bundler && bundle install --without=development
RUN yes '' | bundle exec bin/sequenceserver -s
ENTRYPOINT ["bundle", "exec", "bin/sequenceserver", "-d", "/db"]

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sequenceserver-2.0.0.rc3 Dockerfile
sequenceserver-2.0.0.rc2 Dockerfile
sequenceserver-2.0.0.rc1 Dockerfile
sequenceserver-2.0.0.beta4 Dockerfile
sequenceserver-2.0.0.beta3 Dockerfile