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>
This commit is contained in:
Shaun Verch 2022-01-13 13:05:32 -05:00 committed by GitHub
parent b042e32ea0
commit 73d6aa937d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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