Install mealie in addition to the dependencies

This commit is contained in:
Antoine Bertin 2021-04-28 13:38:24 +02:00
commit fc2ab3b970
No known key found for this signature in database
GPG key ID: 09851B52754E2327
2 changed files with 2 additions and 2 deletions

View file

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

View file

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