From b621d8ed5a6b064ba867ebc7f66019f5c3fe7fac Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Sun, 8 Mar 2020 20:39:43 +0100 Subject: [PATCH] [Docker] use debian. --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6132c3..3cdff29 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,8 @@ -FROM python:3.8-alpine +FROM python:3.8-slim EXPOSE 4785 -RUN apk update -q \ - && apk add -q --no-cache build-base \ - && pip3 install --no-cache-dir matrix-nio \ - && apk del build-base \ - && rm -rf /var/cache/apk/* +RUN pip3 install --no-cache-dir matrix-nio ADD matrix_webhook.py /