File: Dockerfile

package info (click to toggle)
python-gabbi 3.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 932 kB
  • sloc: python: 3,711; makefile: 60; sh: 32
file content (9 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (2)
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"]