From 2df77f89e9d7688e5295969c6a5e881c6e9e9ade Mon Sep 17 00:00:00 2001 From: Krateng Date: Fri, 29 May 2020 17:43:34 +0200 Subject: [PATCH] Added psutil to dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a49020..46f6e41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM python:3.6-alpine WORKDIR /usr/src/app RUN apk update -RUN apk add gcc libxml2-dev libxslt-dev py3-pip libc-dev +RUN apk add gcc libxml2-dev libxslt-dev py3-pip libc-dev linux-headers +RUN pip3 install psutil RUN pip3 install malojaserver