From 649475f35ab54b9eec02cb8ad67e28f8373836e7 Mon Sep 17 00:00:00 2001 From: David <39565245+dmunozv04@users.noreply.github.com> Date: Wed, 2 Feb 2022 20:35:41 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 129c81a..bf8e7b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,9 @@ # syntax=docker/dockerfile:1 -FROM python:3.10-bullseye +FROM python:3.10-bullseye-slim WORKDIR /app -RUN apk update && \ - apk add build-base - COPY requirements.txt . RUN pip3 install -r requirements.txt