Add scripts directory to Dockerfile

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-04-02 00:49:22 -03:00
commit 5092719b65

View file

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