Update Dockerfile
Some checks failed
Actions / build (push) Failing after 35s

This commit is contained in:
cswimr 2024-12-22 12:26:22 -05:00
parent 7c05378731
commit f50ff8cca1
Signed by untrusted user who does not match committer: CoastalCommits
GPG key ID: 7E73189F651A553F

View file

@ -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
FROM yarn AS docs
RUN yarn install -g @getmeli/cli@1.2.0