Dockerfile-nginx-proxy-tester 295 B

12345678910
  1. FROM python:2.7-alpine
  2. # Note: we're using alpine because it has openssl 1.0.2, which we need for testing
  3. RUN apk add --update bash openssl curl && rm -rf /var/cache/apk/*
  4. COPY python-requirements.txt /requirements.txt
  5. RUN pip install -r /requirements.txt
  6. WORKDIR /test
  7. ENTRYPOINT ["pytest"]