From c13f9b6027bf39e547829d606c8b804f84f343a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20N=C3=BCtzi?= Date: Wed, 1 Jun 2022 12:55:36 +0200 Subject: [PATCH] fix: Add test for issue #2049 (#2114) - This missing files problem should be fixed by PR #2066. --- integration/dockerfiles/Dockerfile_test_issue_2049 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 integration/dockerfiles/Dockerfile_test_issue_2049 diff --git a/integration/dockerfiles/Dockerfile_test_issue_2049 b/integration/dockerfiles/Dockerfile_test_issue_2049 new file mode 100644 index 000000000..57cc3ae74 --- /dev/null +++ b/integration/dockerfiles/Dockerfile_test_issue_2049 @@ -0,0 +1,6 @@ +FROM debian:bullseye-20220328 + +RUN set -x; \ + apt-get update && \ + apt-get install -y curl openssh-client gnupg gpg-agent git make && \ + rm -rf /var/lib/apt/lists/* \ No newline at end of file