From 709eb50037a230b667fa208f3c63cfe5da8fb4d2 Mon Sep 17 00:00:00 2001
From: Gruve_p <gruve-p@users.noreply.github.com>
Date: Wed, 25 Sep 2019 13:35:48 +0200
Subject: [PATCH] Fix dockerfile

---
 Dockerfile | 22 +++-------------------
 1 file changed, 3 insertions(+), 19 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 86bbf6237e37..62eedba7aae6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,24 +1,8 @@
 FROM debian:stretch-slim as builder
 
-RUN apk add --no-cache \
-     ca-certificates \
-     autoconf \
-     automake \
-     build-base \
-     libressl \
-     libtool \
-     gmp-dev \
-     python \
-     python-dev \
-     python3 \
-     py3-mako \
-     sqlite-dev \
-     wget \
-     git \
-     file \
-     gnupg \
-     swig \
-     zlib-dev
+RUN apt-get update && apt-get install -y --no-install-recommends \
+  ca-certificates autoconf automake build-essential git libtool libgmp-dev \
+  libsqlite3-dev python python3 python3-mako net-tools zlib1g-dev wget gnupg dirmngr gettext
 
 WORKDIR /opt