From 603764cdcc40c65258310e74f1a343ec2b2ea2eb Mon Sep 17 00:00:00 2001 From: Philipp Grathwohl Date: Sun, 28 Nov 2021 13:26:44 +0100 Subject: [PATCH] Use full python image to avoid build errors --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b973b7b..2e747ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ RUN apk --no-cache add curl && mkdir /downloads # Download installation files RUN curl https://github.com/avollkopf/craftbeerpi4-ui/archive/main.zip -L -o ./downloads/cbpi-ui.zip -FROM python:3.7-slim +FROM python:3.7 # Install dependencies RUN apt-get update \