File: Dockerfile.debian

package info (click to toggle)
vsearch 2.30.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,200 kB
  • sloc: cpp: 30,216; ansic: 493; makefile: 260; sh: 101
file content (19 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM debian:latest
WORKDIR /opt/vsearch
COPY . .
RUN apt-get update
RUN apt-get -y install \
	autoconf \
	automake \
	g++ \
	ghostscript \
	groff \
	libbz2-dev \
	make \
	zlib1g-dev
RUN ./autogen.sh
RUN ./configure CFLAGS="-O2" CXXFLAGS="-O2"
RUN make clean
RUN make ARFLAGS="cr"
RUN make install
ENTRYPOINT ["/usr/local/bin/vsearch"]