From 6c62976f323556b5d57f267f8f9c5fb29210b934 Mon Sep 17 00:00:00 2001 From: Blair Vanderlugt Date: Sat, 22 May 2021 17:36:06 -0700 Subject: [PATCH] added test files --- apps/cic-eth/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cic-eth/docker/Dockerfile b/apps/cic-eth/docker/Dockerfile index 07a685a8..6c0eb574 100644 --- a/apps/cic-eth/docker/Dockerfile +++ b/apps/cic-eth/docker/Dockerfile @@ -2,7 +2,6 @@ FROM python:3.8.6-slim-buster as compile WORKDIR /usr/src/cic-eth - RUN apt-get update && \ apt install -y gcc gnupg libpq-dev wget make g++ gnupg bash procps git @@ -37,6 +36,7 @@ COPY --from=compile /usr/local/lib/python3.8/site-packages/ \ COPY cic-eth/test_requirements.txt . RUN pip install $pip_extra_index_url_flag -r test_requirements.txt +COPY cic-eth . ENV PYTHONPATH .