From 5092719b65372a99dad5d42b9ca2bf8c0592f4de Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 2 Apr 2024 00:49:22 -0300 Subject: [PATCH] Add scripts directory to Dockerfile --- build_and_push.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_and_push.Dockerfile b/build_and_push.Dockerfile index 3cce7804b..136f34f9e 100644 --- a/build_and_push.Dockerfile +++ b/build_and_push.Dockerfile @@ -62,9 +62,10 @@ RUN apt-get update \ WORKDIR /app COPY pyproject.toml poetry.lock ./ COPY src ./src +COPY scripts ./scripts COPY Makefile ./ COPY README.md ./ -RUN curl -sSL https://install.python-poetry.org | python3 - && make build +RUN make build # Final stage for the application FROM python-base as final