From 32afc14efe44470475a087feeb1f12b1dc0d49d5 Mon Sep 17 00:00:00 2001 From: Colin Yates Date: Tue, 7 Aug 2018 07:35:42 +0100 Subject: [PATCH] added libzip-dev as dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 80cb859..990e8a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM debian ENV PATH=$PATH:/opt/Nim/bin:/root/.nimble/bin RUN apt update && \ - apt -y install libc-dev gcc curl git perl mingw-w64 \ + apt -y install libc-dev gcc curl git perl mingw-w64 libzip-dev \ && \ rm -rf /var/cache/apt/;