File: Dockerfile

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 (15 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM alpine:latest
WORKDIR /opt/vsearch
COPY . .
RUN apk add --no-cache \
        libstdc++ zlib-dev bzip2-dev \
        autoconf automake make g++ && \
    ./autogen.sh && \
    ./configure CFLAGS="-O2" CXXFLAGS="-O2" && \
    make clean && \
    make && \
    make install && \
    make clean && \
    apk del autoconf automake make g++ && \
    rm -rf /opt/vsearch
ENTRYPOINT ["/usr/local/bin/vsearch"]