You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd
mkdir py_experimenter
cd py_experimenter
mkdir Docker
vim Docker/Dockerfile
Content added to Dockerfile:
FROM ubuntu:latest
RUN apt-get update && apt-get upgrade -y
RUN apt-get install python3-pip -y
RUN pip3 install py-experimenter
RUN pip3 install scikit-learn
WORKDIR /py_experimenter
One reviewer of the JOSS Paper provided a minimalistic Dockerfile which could be added to the repository.
Content added to Dockerfile:
Build and enter the container:
The text was updated successfully, but these errors were encountered: