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