From b69f618de77ed42c18cdccbd0d998e648b893b84 Mon Sep 17 00:00:00 2001 From: Alex Parsons Date: Thu, 7 Dec 2023 09:12:06 +0000 Subject: [PATCH] Fix bad quote marks in base docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1d20c2e..74c241c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN chmod u+x /install/docker-provision && /install/docker-provision 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 install