File: Dockerfile

package info (click to toggle)
exabgp 4.2.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,612 kB
  • sloc: python: 37,482; sh: 581; perl: 31; makefile: 23
file content (14 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3

RUN mkdir -p /src
COPY setup.py /src
COPY CHANGELOG.rst /src
COPY debian/ /src
COPY lib/ /src/lib/

RUN pip install --upgrade pip setuptools
RUN cd /src && pip install .

RUN rm -rf /src

CMD ["exabgp", "--help"]