ium_444356/Dockerfile

28 lines
512 B
Docker
Raw Normal View History

2022-04-02 12:43:11 +02:00
FROM ubuntu:latest
2022-03-31 18:49:25 +02:00
RUN apt-get update
2022-04-01 13:24:19 +02:00
RUN apt-get install -y python3-pip
2022-04-02 12:53:40 +02:00
RUN pip3 install --upgrade pip
RUN pip3 install --upgrade Pillow
2022-04-02 12:49:57 +02:00
RUN pip3 install kaggle
2022-04-02 12:43:11 +02:00
RUN pip3 install pandas
RUN pip3 install matplotlib
RUN pip3 install sklearn
2022-03-31 18:49:25 +02:00
RUN apt-get install unzip
2022-04-02 14:19:59 +02:00
ENV CUTOFF=1000
2022-04-02 13:50:50 +02:00
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
ENV KAGGLE_USERNAME=${KAGGLE_USERNAME}
ENV KAGGLE_KEY=${KAGGLE_KEY}
2022-03-31 18:49:25 +02:00
2022-04-02 14:23:36 +02:00
RUN mkdir /dane
2022-04-02 13:42:37 +02:00
WORKDIR /app
2022-03-31 18:49:25 +02:00
COPY download.sh .
COPY Zajecia_2/main.py .
2022-04-02 14:12:22 +02:00
RUN ./download.sh
#CMD ["python3", "./main.py"]