From cd8fb528339dbd23b3e126b440e6d8b86864a9b2 Mon Sep 17 00:00:00 2001 From: cnshing <114209114+cnshing@users.noreply.github.com> Date: Sat, 14 Oct 2023 22:07:52 -0700 Subject: [PATCH] build: Pass poetry README.md check See https://github.com/python-poetry/poetry/issues/6937 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1a9e496..27a8e8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN apt-get update \ build-essential \ curl -COPY pyproject.toml ./ +COPY pyproject.toml README.md ./ RUN poetry check @@ -74,4 +74,4 @@ USER 1001 #Links a secret to the project directory for PRAW scrapper RUN ln -s /run/secrets/praw.ini ./praw.ini -CMD uvicorn api.middleman:app --host ${SNOOSPOOF_API_HOST} --port ${SNOOSPOOF_API_PORT} \ No newline at end of file +CMD uvicorn api.middleman:app --host ${SNOOSPOOF_API_HOST} --port ${SNOOSPOOF_API_PORT}