Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric-Magnan authored Nov 9, 2023
1 parent 798932a commit 4a23800
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /home/docker_user/workspace
# Install Poetry
RUN curl -sSL https://install.python-poetry.org | python3 -

ENV PATH="${PATH}:/home/docker_user/.poetry/bin:/home/docker_user/poetry/bin"
ENV PATH="/home/docker_user/.local/bin:$PATH
COPY pyproject.toml ./
COPY poetry.lock ./
Expand All @@ -26,4 +26,6 @@ RUN poetry install --no-root --only main
COPY . /home/docker_user/workspace/
RUN poetry install --only main
CMD ["poetry", "run", "launch_github_app"]

0 comments on commit 4a23800

Please sign in to comment.