ActionsDockerContainers/Dockerfile
cswimr 64d2ae1220
All checks were successful
Actions / build (push) Successful in 1m22s
move to uv
2024-10-10 15:23:57 -04:00

11 lines
333 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
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