15 lines
222 B
Docker
15 lines
222 B
Docker
FROM ubuntu:latest
|
|
|
|
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
|
|
|