Skip to content

Commit 3b6cdb4

Browse files
author
Joe Talerico
committed
Update Dockerfile
- Poetry install URL has changed. - Update the PATH to find new Poetry install path Signed-off-by: Joe Talerico <[email protected]>
1 parent d7eb144 commit 3b6cdb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ RUN apt-get update --assume-yes && \
2525
&& rm -rf /var/lib/apt/lists/*
2626

2727
# Get poetry package
28-
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
28+
RUN curl -sSL https://install.python-poetry.org | python3 -
2929
# Adding poetry to PATH
30-
ENV PATH="/root/.poetry/bin:$PATH"
30+
ENV PATH="/root/.local/bin/:$PATH"
3131

3232
# Copy the rest of the program over
3333
COPY --chown=hunter:hunter . ${HUNTER_HOME}

0 commit comments

Comments
 (0)