From 1695cf50ed0ed84fcbf0ff5dc604489750a93dd3 Mon Sep 17 00:00:00 2001 From: Marko Budiselic Date: Fri, 22 Jun 2018 17:46:02 +0200 Subject: [PATCH] Install openssl inside docker, update order of sections in the documentation Reviewers: mferencevic Reviewed By: mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1448 --- docs/user_technical/README.md | 2 +- release/docker/memgraph.dockerfile | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/user_technical/README.md b/docs/user_technical/README.md index 31a8b470f..58254e235 100644 --- a/docs/user_technical/README.md +++ b/docs/user_technical/README.md @@ -12,12 +12,12 @@ data structures, multi-version concurrency control and asynchronous IO. * [About Memgraph](#about-memgraph) * [Quick Start](quick-start.md) - * [Concepts](concepts.md) * [Examples](examples.md) * [Drivers](drivers.md) * [Data Storage](storage.md) * [openCypher Query Language](open-cypher.md) * [Import Tools](import-tools.md) + * [Concepts](concepts.md) * [Upcoming Features](upcoming-features.md) [//]: # (Nothing should go below the contents section) diff --git a/release/docker/memgraph.dockerfile b/release/docker/memgraph.dockerfile index 4f5ebf768..a15770e51 100644 --- a/release/docker/memgraph.dockerfile +++ b/release/docker/memgraph.dockerfile @@ -2,6 +2,10 @@ FROM debian:stretch ARG deb_release +RUN apt-get update && apt-get install -y \ + openssl libcurl3 libssl1.1 \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + COPY ${deb_release} / # Install memgraph package