ium_151636/Dockerfile

15 lines
208 B
Docker
Raw Normal View History

2023-05-11 16:53:44 +02:00
FROM ubuntu:latest
2023-05-11 16:47:03 +02:00
2023-05-11 16:53:44 +02:00
RUN apt-get update && \
apt-get install -y python3.10 python3-pip && \
pip3 install --upgrade pip
RUN pip3 install --user kaggle pandas
COPY . /app
WORKDIR /app
CMD ./script1
2023-05-11 16:47:03 +02:00