2021-04-08 20:58:08 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y python3-pip
|
|
|
|
RUN apt-get install -y figlet
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY ./requirements.txt ./
|
2021-04-08 21:20:22 +02:00
|
|
|
COPY ./script2.py ./
|
2021-04-08 20:58:08 +02:00
|
|
|
|
2021-04-08 22:45:13 +02:00
|
|
|
RUN pip3 install -r ./requirements.txt
|
2021-04-08 22:28:41 +02:00
|
|
|
CMD python3 script2.py
|