ActionsDockerContainers/Dockerfile

12 lines
333 B
Text
Raw Normal View History

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-10-10 16:15:12 -04:00
FROM uv AS docs
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 && \
node --version
RUN npm install -g @getmeli/cli@1.2.0