From 4b92d0f68542125221f1c2b8a804c9f2e7ede87f Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Wed, 3 Oct 2018 22:44:23 -0700 Subject: [PATCH] Remove unneeded Dockerfile for end-to-end tests. --- tests/end-to-end/Dockerfile | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 tests/end-to-end/Dockerfile diff --git a/tests/end-to-end/Dockerfile b/tests/end-to-end/Dockerfile deleted file mode 100644 index 33f8ea65..00000000 --- a/tests/end-to-end/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM b3vis/borgmatic - -# Starting from an existing borgmatic image, install the local source on top of -# it so that we can test any local changes. -RUN adduser -h /home -D app -COPY test_requirements.txt /app/ -RUN pip3 install --upgrade --requirement /app/test_requirements.txt -COPY . /app -RUN rm -fr /app/.tox /app/.git \ - && pip3 install --upgrade /app \ - && chown -R app /app - -USER app -WORKDIR /app -ENV BORG_CACHE_DIR "/app/.cache/borg" - -CMD ["py.test"]