From d39078a78d837ebba3c62617805543414d8f7a80 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Mon, 2 Aug 2021 18:09:30 +0200 Subject: [PATCH] Changed image from alpine to slim (buster) In alpine we cannot run os.exec-commands --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1936ba5..f20facf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM python:3.9-alpine +FROM python:3.9-slim WORKDIR /app