diff --git a/Dockerfile b/Dockerfile index 6337c9a..b5e9a30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.12-slim RUN apt-get update && apt-get install -y curl # Installing Poetry using curl -RUN curl -sSL https://install.python-poetry.org | python3 - +RUN curl -sS https://install.python-poetry.org | python3 - #Adding Poetry to the PATH ENV PATH="/root/.local/bin:$PATH" @@ -17,8 +17,8 @@ RUN chmod 777 /app WORKDIR /app -#we install the dependencies specified in py project.tom l, excluding dev dependencies. -RUN poetry install +#we install the dependencies specified in py project.toml, excluding dev dependencies. +RUN poetry install --no-interaction COPY . /app