Skip to content

Commit

Permalink
Fix incorrect quotes that expand path too early
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons committed Oct 31, 2023
1 parent a09fdd2 commit 35acb81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion {{cookiecutter.hyphenated}}/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3.10-bullseye
ENV DEBIAN_FRONTEND noninteractive
COPY pyproject.toml poetry.loc[k] /
RUN curl -sSL https://install.python-poetry.org | python - && \
echo "export PATH=\"/root/.local/bin:$PATH\"" > ~/.bashrc && \
echo 'export PATH="/root/.local/bin:$PATH"' > ~/.bashrc && \
export PATH="/root/.local/bin:$PATH" && \
poetry config virtualenvs.create false && \
poetry self add poetry-bumpversion && \
Expand Down

0 comments on commit 35acb81

Please sign in to comment.