fix templates dockerfile (#13672)

- **Description:** We need to update the Dockerfile for templates to
also copy your README.md. This is because poetry requires that a readme
exists if it is specified in the pyproject.toml
This commit is contained in:
jakerachleff 2023-11-21 11:09:55 -08:00 committed by GitHub
parent 11614700a4
commit c6937a2eb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ RUN poetry config virtualenvs.create false
WORKDIR /code WORKDIR /code
COPY ./pyproject.toml ./poetry.lock* ./ COPY ./pyproject.toml ./README.md ./poetry.lock* ./
COPY ./packages ./packages COPY ./packages ./packages