From 59a874d3830c7b7a014d4efc27b1dccaa5a9a7cb Mon Sep 17 00:00:00 2001 From: Yan Minari Date: Thu, 27 Jul 2017 17:17:51 -0300 Subject: [PATCH] Add missing essential packages Signed-off-by: Yan Minari --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e9a1b54..eb9d48d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENTRYPOINT ["lua"] ARG LUA_VERSION=5.1 -RUN apk add --no-cache lua${LUA_VERSION} lua${LUA_VERSION}-dev build-base git bash unzip && \ +RUN apk add --no-cache lua${LUA_VERSION} lua${LUA_VERSION}-dev build-base git bash unzip curl openssl-dev && \ ln -s /usr/bin/lua${LUA_VERSION} /usr/local/bin/lua && \ cd /tmp && \ git clone https://github.com/keplerproject/luarocks.git && \