1234567891011121314151617 |
- FROM docker.io/debian:bullseye-slim
- RUN apt-get update \
- && apt-get install --no-install-recommends --yes \
- curl
- RUN apt-get install --no-install-recommends --yes \
- ca-certificates
- RUN curl https://archive.toit.io/cli/v1.18.2/linux \
- | tar -xvzf - -C /usr/local/bin \
- && apt-get install --autoremove --yes curl \
- && rm -r /var/lib/apt/lists/*
|