10 lines
130 B
Docker
10 lines
130 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y \
|
|
git \
|
|
python3-pip \
|
|
python3
|
|
|
|
RUN python3 -m pip install sacred pymongo
|
|
|