ium_470607/lab5/eval/Dockerfile

22 lines
449 B
Docker
Raw Permalink Normal View History

2021-05-02 22:27:45 +02:00
FROM ubuntu:latest
RUN apt update >>/dev/null
RUN apt install -y apt-utils >>/dev/null
RUN apt install -y python3.8 >>/dev/null
RUN apt install -y python3-pip >>/dev/null
RUN apt install -y unzip >>/dev/null
2021-05-15 20:45:35 +02:00
RUN pip3 install 'h5py==2.10.0' --force-reinstall
2021-05-02 22:27:45 +02:00
WORKDIR /app
2021-05-15 18:19:27 +02:00
COPY ./eval.py ./
2021-05-02 22:27:45 +02:00
COPY ./script.sh ./
2021-05-16 14:30:55 +02:00
COPY ./test.csv ./
2021-05-02 22:27:45 +02:00
RUN chmod +x script.sh
COPY ./requirements.txt ./
RUN pip3 install -r requirements.txt >>/dev/null
CMD ./script.sh