ium_430705/Dockerfile

17 lines
271 B
Docker
Raw Normal View History

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 ./
COPY ./script.py ./
COPY ./kaggle.json /root/.kaggle/
RUN pip3 install --user -r ./requirements.txt
CMD python3 script.py