forked from AITech/aitech-ium
9 lines
123 B
Docker
9 lines
123 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
RUN apt update && apt install -y \
|
||
|
python3-pip \
|
||
|
python3
|
||
|
|
||
|
RUN python3 -m pip install sacred pymongo
|
||
|
|