ium_430705/Dockerfile

16 lines
272 B
Docker

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 ./
COPY ./script2.py ./
RUN pip3 install --user -r ./requirements.txt
RUN pip3 install --user -r pandas
CMD python3 script2.py