From 2566fbd1cb3fbb3ca65163c11b4f9bd3a0811e98 Mon Sep 17 00:00:00 2001 From: Alagris Date: Sun, 11 Apr 2021 19:47:13 +0200 Subject: [PATCH] added git --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index febefca..01f0e81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:latest # Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes) -RUN apt update && apt install -y python3 python3-pip +RUN apt update && apt install -y python3 python3-pip git # 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