|
@@ -1,17 +1,19 @@
|
|
|
|
|
|
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 \
|
|
|
+ && apt-get install --no-install-recommends --yes ca-certificates curl \
|
|
|
+ && curl https://archive.toit.io/cli/v1.18.2/linux \
|
|
|
| tar -xvzf - -C /usr/local/bin \
|
|
|
- && apt-get install --autoremove --yes curl \
|
|
|
+ && apt-get install --autoremove --yes ca-certificates curl \
|
|
|
&& rm -r /var/lib/apt/lists/*
|
|
|
|
|
|
|