From 6e858809bd4af32876dcfebd45af99a038438504 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Mon, 13 Apr 2020 21:26:51 +0200 Subject: [PATCH] No need to have bash + clean tools after building --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 59760b8..36c26f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,5 @@ COPY pynyaata /app/pynyaata COPY requirements.txt /app COPY *.py /app/ WORKDIR /app -RUN apk add build-base bash && pip install -r requirements.txt +RUN apk add build-base && pip install -r requirements.txt && apk del build-base CMD ["python", "run.py"]