add Dockerfile for e2e tests

This commit is contained in:
Sergey Dudoladov 2019-05-08 10:33:42 +02:00
parent af13605abf
commit 52e53f152f
1 changed files with 9 additions and 0 deletions

9
e2e/Dockerfile Normal file
View File

@ -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 .