ActionsDockerContainers/Dockerfile
cswimr ff5daae1ed
All checks were successful
Actions / build (push) Successful in 2m10s
set FORCE_COLOR=1
2024-11-15 00:03:16 -05:00

12 lines
351 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