ActionsDockerContainers/Dockerfile
cswimr 35148615e3
All checks were successful
Actions / build (push) Successful in 1m0s
Update Dockerfile
2024-12-23 16:57:57 -05:00

16 lines
No EOL
441 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 yarn
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get update && \
apt-get install -y nodejs && \
node --version && \
npm --version && \
corepack enable && \
yarn --version
FROM yarn AS docs
RUN yarn global add @getmeli/cli@1.2.0