From f50ff8cca1432ebf7ec7dfe2dc484ec624b0e743 Mon Sep 17 00:00:00 2001 From: cswimr Date: Sun, 22 Dec 2024 12:26:22 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 658bf1c..5ff2819 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,13 +3,13 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv ENV UV_PYTHON_PREFERENCE=only-managed ENV FORCE_COLOR=1 -FROM uv AS docs +FROM uv AS yarn RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ apt-get update && \ apt-get install -y nodejs && \ - node --version + node --version && \ + npm --version && \ + npm i -g yarn -RUN npm install -g @getmeli/cli@1.2.0 - -FROM docs AS yarn -RUN npm i -g yarn \ No newline at end of file +FROM yarn AS docs +RUN yarn install -g @getmeli/cli@1.2.0 \ No newline at end of file