From dedc3eae42ed1f9669b9fa85f35bc910df0c1549 Mon Sep 17 00:00:00 2001 From: Dominik Date: Wed, 9 Jun 2021 10:50:19 +0200 Subject: [PATCH] fox --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d15ac65..e8b86e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:latest # Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes) -RUN apt update && apt install -y python3 && apt install -y python3-pip +RUN apt update && apt install -y python3 && apt install -y python3-pip && apt install python3-dev # Stwórzmy w kontenerze (jeśli nie istnieje) katalog /app i przejdźmy do niego (wszystkie kolejne polecenia RUN, CMD, ENTRYPOINT, COPY i ADD będą w nim wykonywane) WORKDIR /app