From 93889ff3a837be6c29049d44609446e6374fdc1c Mon Sep 17 00:00:00 2001 From: Tom Clark Date: Sun, 8 Oct 2023 13:00:02 +0100 Subject: [PATCH] REV: Revert poetry and yarn changes to check 3.11 build works --- Dockerfile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9b361a..d9f5102 100644 --- a/Dockerfile +++ b/Dockerfile @@ -148,15 +148,15 @@ WORKDIR /workspace ENV HISTFILE="/workspace/.devcontainer/.zsh_history" # Install poetry -USER vscode -ENV POETRY_HOME=/home/vscode/.poetry -RUN curl -sSL https://install.python-poetry.org | python - -ENV PATH "$POETRY_HOME/bin:$PATH" -RUN poetry config virtualenvs.create false - -# Overcome the fact that yarn don't bother putting their keys on the ring (required for installing sshd feature)... -# https://github.com/yarnpkg/yarn/issues/7866#issuecomment-1404052064 -RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo gpg --dearmour -o "/usr/share/keyrings/yarn-keyring.gpg" & \ - echo "deb [signed-by=/usr/share/keyrings/yarn-keyring.gpg] https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list & \ - gpg --refresh-keys & \ - apt-get update -y +# USER vscode +# ENV POETRY_HOME=/home/vscode/.poetry +# RUN curl -sSL https://install.python-poetry.org | python - +# ENV PATH "$POETRY_HOME/bin:$PATH" +# RUN poetry config virtualenvs.create false + +# # Overcome the fact that yarn don't bother putting their keys on the ring (required for installing sshd feature)... +# # https://github.com/yarnpkg/yarn/issues/7866#issuecomment-1404052064 +# RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo gpg --dearmour -o "/usr/share/keyrings/yarn-keyring.gpg" & \ +# echo "deb [signed-by=/usr/share/keyrings/yarn-keyring.gpg] https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list & \ +# gpg --refresh-keys & \ +# apt-get update -y