add Dockerfile for e2e tests
This commit is contained in:
parent
af13605abf
commit
52e53f152f
|
|
@ -0,0 +1,9 @@
|
|||
FROM python:3.5-slim
|
||||
MAINTAINER Team ACID @ Zalando <team-acid@zalando.de>
|
||||
|
||||
WORKDIR /e2e
|
||||
|
||||
COPY requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY tests .
|
||||
Loading…
Reference in New Issue