From b16cdda0dc7a89f4e2712170a4431f9003545632 Mon Sep 17 00:00:00 2001 From: MartinOntiveros <99684013+MartinOntiveros@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:55:12 -0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index dc0ed31..839383a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,5 @@ RUN python -m pip install --upgrade pip RUN python -m pip install poetry ADD . /app/ WORKDIR /app - -COPY entrypoint.sh /entrypoint.sh -RUN chmod +x /entrypoint.sh -CMD ["/entrypoint.sh"] +RUN poetry install +CMD [ "poetry", "run", "geppetto" ]