2024-10-10 15:23:57 -04:00
|
|
|
FROM catthehacker/ubuntu:act-latest AS uv
|
|
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
|
|
|
|
ENV UV_PYTHON_PREFERENCE=only-managed
|
2024-11-15 00:03:16 -05:00
|
|
|
ENV FORCE_COLOR=1
|
2024-10-10 15:23:57 -04:00
|
|
|
|
2024-12-22 12:26:22 -05:00
|
|
|
FROM uv AS yarn
|
2024-10-10 15:23:57 -04:00
|
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
|
|
|
|
apt-get update && \
|
|
|
|
apt-get install -y nodejs && \
|
2024-12-22 12:26:22 -05:00
|
|
|
node --version && \
|
|
|
|
npm --version && \
|
2024-12-23 16:57:57 -05:00
|
|
|
corepack enable && \
|
|
|
|
yarn --version
|
2024-10-10 15:23:57 -04:00
|
|
|
|
2024-12-22 12:26:22 -05:00
|
|
|
FROM yarn AS docs
|
2024-12-22 12:27:59 -05:00
|
|
|
RUN yarn global add @getmeli/cli@1.2.0
|