From 73d6aa937db99d28442786ae7c3c9bf6dccd06e2 Mon Sep 17 00:00:00 2001 From: Shaun Verch Date: Thu, 13 Jan 2022 13:05:32 -0500 Subject: [PATCH] Add pyproject.toml to fix docker compose build (#1131) * Add pyproject.toml to fix docker compose build Even though we want to use locked dependencies, pyproject.toml is still required. * update Dockerfile Co-authored-by: Jorge Escobar <83969469+esfoobar-usds@users.noreply.github.com> --- data/data-pipeline/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/data-pipeline/Dockerfile b/data/data-pipeline/Dockerfile index e01c6330..6005629d 100644 --- a/data/data-pipeline/Dockerfile +++ b/data/data-pipeline/Dockerfile @@ -35,7 +35,7 @@ ENV PYTHONFAULTHANDLER=1 \ POETRY_VERSION=1.1.12 WORKDIR /data-pipeline -COPY poetry.lock /data-pipeline/ +COPY pyproject.toml /data-pipeline/ RUN pip install "poetry==$POETRY_VERSION" RUN poetry config virtualenvs.create false \