From 7af3888f90dc7fa057013761f0ae86a156a53f2b Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 21 Sep 2023 19:29:35 +0200 Subject: [PATCH] install curl --- automation/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/Dockerfile b/automation/Dockerfile index d595b60..aa0d64b 100644 --- a/automation/Dockerfile +++ b/automation/Dockerfile @@ -5,7 +5,7 @@ FROM rust:latest RUN apt-get update && apt-get --yes upgrade # tzdata is a dependency, won't install otherwise ARG DEBIAN_FRONTEND=noninteractive -RUN apt-get --yes install rsync +RUN apt-get --yes install rsync curl # set CROSS_CONTAINER_IN_CONTAINER to inform `cross` that it is executed from within a container ENV CROSS_CONTAINER_IN_CONTAINER=true