From e9aaebf488ec949a26d889cf817ee9555bbb2e82 Mon Sep 17 00:00:00 2001 From: "ricardo.bartels@telekom.de" Date: Mon, 18 Oct 2021 22:00:53 +0200 Subject: [PATCH] switches Docker base image to 'slim-bullseye' #105 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cb1d65b..008ca63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM python:3.9-alpine +FROM python:3.9-slim-bullseye # Install dependencies -RUN apk add --no-cache build-base libffi-dev git +RUN apt-get update && apt-get upgrade && apt-get install -y git-core # Prepare the application COPY . /opt