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