ium_452639/train-action/Dockerfile

18 lines
523 B
Docker
Raw Permalink Normal View History

2023-05-24 00:08:42 +02:00
FROM ubuntu:22.04
RUN apt update && apt install -y vim make python3 python3-pip python-is-python3 gcc g++ golang wget unzip git
RUN pip install pandas matplotlib scikit-learn tensorflow
RUN mkdir /ium
2023-05-24 00:39:49 +02:00
COPY .. /ium
2023-05-24 00:08:42 +02:00
WORKDIR /ium/src/
RUN wget https://bendun.students.wmi.amu.edu.pl/stop_times.train.tsv
RUN wget https://bendun.students.wmi.amu.edu.pl/stop_times.valid.tsv
RUN wget https://bendun.students.wmi.amu.edu.pl/stop_times.categories.tsv
VOLUME /github/workspace/
2023-05-24 00:19:00 +02:00
ENTRYPOINT ["/ium/train-action/entrypoint.sh"]