From fc2ab3b9700a3c7a0ad28e09d94465e39ee045e8 Mon Sep 17 00:00:00 2001 From: Antoine Bertin Date: Wed, 28 Apr 2021 13:38:24 +0200 Subject: [PATCH] Install mealie in addition to the dependencies --- Dockerfile | 2 +- Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 70741ce2b..4d0bac3ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN pip install --no-cache-dir "psycopg2-binary==2.8.6" WORKDIR /app COPY pyproject.toml poetry.lock /app/ RUN poetry config virtualenvs.create false -RUN poetry install --no-root --no-dev --no-interaction --no-ansi +RUN poetry install --no-dev --no-interaction --no-ansi # project code COPY ./mealie /app/mealie diff --git a/Dockerfile.dev b/Dockerfile.dev index dba22b223..d2f1db2e1 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -13,7 +13,7 @@ RUN pip install --no-cache-dir "psycopg2-binary==2.8.6" WORKDIR /app COPY pyproject.toml poetry.lock /app/ RUN poetry config virtualenvs.create false -RUN poetry install --no-root --no-dev --no-interaction --no-ansi +RUN poetry install --no-dev --no-interaction --no-ansi # project code COPY ./mealie /app/mealie