File: Dockerfile

package info (click to toggle)
seqan3 3.4.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,580 kB
  • sloc: cpp: 145,192; sh: 307; xml: 264; javascript: 95; makefile: 70; perl: 29; php: 15
file content (22 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Helpful in communication with upstream about build/test issues

FROM debian:unstable

RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
  debhelper \
  cmake \
  zlib1g-dev \
  libboost-dev \
  libgtest-dev \
  liblemon-dev \
  libbz2-dev \
  build-essential \
  git \
  ca-certificates \
  devscripts \
  g++-8

WORKDIR /build
RUN git clone --depth=1 https://salsa.debian.org/med-team/seqan3.git
WORKDIR /build/seqan3
RUN uscan --force && dpkg-buildpackage -uc -us