added requests

This commit is contained in:
Alagris 2021-04-11 19:50:12 +02:00
parent 2566fbd1cb
commit f6897de9c1
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,8 @@ 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 git
RUN pip3 install requests
# 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