From 5efbb6f77eac902f1e6c9b0a4ced363f99933a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Mon, 14 Nov 2022 01:39:15 +0100 Subject: [PATCH] Update Dockerfile The `--no-dev` option is deprecated --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9e77481..28076e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ ADD --chown=botuser:botuser . /home/botuser/discord-embed/ # 3. Install dependencies. ENV PATH="/home/botuser/.local/bin/:$PATH" RUN curl -sSL https://install.python-poetry.org | python - -RUN poetry install --no-interaction --no-ansi --no-dev +RUN poetry install --no-interaction --no-ansi --only main # Persist the uploaded files and files we have created. VOLUME ["/Uploads"]