Skip to content

Commit

Permalink
Merge pull request #675 from nathanweeks/issue-673
Browse files Browse the repository at this point in the history
Use full image for builder stage; update to bullseye
  • Loading branch information
yannickwurm authored Aug 9, 2023
2 parents a712339 + 95ecc52 commit 1c7670a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ARG BLAST_VERSION=2.14.0

## Stage 1: gem dependencies.
FROM ruby:3.2.0-slim-buster AS builder
FROM ruby:3.2.2-bullseye AS builder

# Copy over files required for installing gem dependencies.
WORKDIR /sequenceserver
Expand All @@ -22,7 +22,7 @@ RUN bundle install --without=development
FROM ncbi/blast:${BLAST_VERSION} AS ncbi-blast

## Stage 3: Puting it together.
FROM ruby:3.2.0-slim-buster AS final
FROM ruby:3.2.2-bullseye AS final

LABEL Description="Intuitive local web frontend for the BLAST bioinformatics tool"
LABEL MailingList="https://groups.google.com/forum/#!forum/sequenceserver"
Expand Down Expand Up @@ -88,7 +88,7 @@ COPY --from=node /usr/src/app/public/sequenceserver-*.min.js public/
COPY --from=node /usr/src/app/public/css/sequenceserver.min.css public/css/

## Stage 6 (optional) Pull the example database from the debian package.
FROM ruby:3.2.0-slim-buster AS example_db
FROM ruby:3.2.2-bullseye AS example_db

WORKDIR /tmp
RUN apt-get update && apt-get download ncbi-blast+ && dpkg-deb -xv ncbi-blast+*.deb .
Expand Down

0 comments on commit 1c7670a

Please sign in to comment.