ium_434804/Dockerfile

16 lines
271 B
Docker
Raw Permalink Normal View History

2021-04-08 21:58:41 +02:00
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y python3-pip
WORKDIR /app
COPY ./stats.py ./
2021-04-21 22:08:54 +02:00
COPY ./tensor.py ./
2021-04-09 00:00:40 +02:00
COPY requirements.txt ./
RUN pip3 install -r ./requirements.txt
2021-06-12 20:20:02 +02:00
RUN pip3 install dvc[ssh] paramiko
2021-04-08 21:58:41 +02:00
2021-04-21 22:08:54 +02:00
CMD python3 stats.py
CMD python3 tensor.py