ActionsDockerContainers/Dockerfile
cswimr 35fd3399f9
All checks were successful
Actions / build (push) Successful in 21s
add yarn image
2024-12-22 12:14:28 -05:00

15 lines
No EOL
387 B
Docker

FROM catthehacker/ubuntu:act-latest AS uv
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
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get update && \
apt-get install -y nodejs && \
node --version
RUN npm install -g @getmeli/cli@1.2.0
FROM docs AS yarn
RUN npm i -g yarn