File: Dockerfile

package info (click to toggle)
python-gabbi 4.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 972 kB
  • sloc: python: 3,788; makefile: 62; sh: 35
file content (9 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
FROM python:3-alpine
MAINTAINER Chris Dent <cdent@anticdent.org>

ARG GABBI_VERSION
RUN python -m venv /app
COPY . /app/
RUN cd /app && PBR_VERSION=${GABBI_VERSION} /app/bin/pip --no-cache-dir install .

ENTRYPOINT ["/app/bin/python", "-m", "gabbi.runner"]