15 lines
236 B
Docker
15 lines
236 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y python3-pip
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./stats.py ./
|
|
COPY ./tensor.py ./
|
|
COPY requirements.txt ./
|
|
|
|
RUN pip3 install -r ./requirements.txt
|
|
|
|
CMD python3 stats.py
|
|
CMD python3 tensor.py |