12 lines
333 B
Text
12 lines
333 B
Text
|
FROM catthehacker/ubuntu:act-latest AS uv
|
||
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
|
||
|
ENV UV_PYTHON_PREFERENCE=only-managed
|
||
|
|
||
|
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
|